forked from flutter-team-archive/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.gn
More file actions
48 lines (44 loc) · 1.04 KB
/
Copy pathBUILD.gn
File metadata and controls
48 lines (44 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 2013 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
config("config") {
include_dirs = [
"$flutter_root/third_party",
"$flutter_root",
]
}
source_set("tonic") {
sources = [
"dart_args.h",
"dart_binding_macros.h",
"dart_class_library.cc",
"dart_class_library.h",
"dart_class_provider.cc",
"dart_class_provider.h",
"dart_library_natives.cc",
"dart_library_natives.h",
"dart_list.cc",
"dart_list.h",
"dart_message_handler.cc",
"dart_message_handler.h",
"dart_microtask_queue.cc",
"dart_microtask_queue.h",
"dart_persistent_value.cc",
"dart_persistent_value.h",
"dart_state.cc",
"dart_state.h",
"dart_wrappable.cc",
"dart_wrappable.h",
"dart_wrapper_info.h",
]
public_deps = [
"common",
"converter",
"file_loader",
"logging",
"scopes",
"typed_data",
"//third_party/dart/runtime:dart_api",
]
public_configs = [ ":config" ]
}