OLD | NEW |
---|---|
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 source_set("tonic") { | 5 source_set("tonic") { |
6 sources = [ | 6 sources = [ |
7 "dart_api_scope.h", | 7 "dart_api_scope.h", |
8 "dart_builtin.cc", | 8 "dart_builtin.cc", |
9 "dart_builtin.h", | 9 "dart_builtin.h", |
10 "dart_class_library.cc", | 10 "dart_class_library.cc", |
11 "dart_class_library.h", | 11 "dart_class_library.h", |
12 "dart_class_provider.cc", | 12 "dart_class_provider.cc", |
13 "dart_class_provider.h", | 13 "dart_class_provider.h", |
14 "dart_converter.cc", | 14 "dart_converter.cc", |
15 "dart_converter.h", | 15 "dart_converter.h", |
16 "dart_debugger.cc", | |
17 "dart_debugger.h", | |
16 "dart_dependency_catcher.cc", | 18 "dart_dependency_catcher.cc", |
17 "dart_dependency_catcher.h", | 19 "dart_dependency_catcher.h", |
18 "dart_error.cc", | 20 "dart_error.cc", |
19 "dart_error.h", | 21 "dart_error.h", |
20 "dart_exception_factory.cc", | 22 "dart_exception_factory.cc", |
21 "dart_exception_factory.h", | 23 "dart_exception_factory.h", |
22 "dart_gc_context.cc", | 24 "dart_gc_context.cc", |
23 "dart_gc_context.h", | 25 "dart_gc_context.h", |
24 "dart_gc_controller.cc", | 26 "dart_gc_controller.cc", |
25 "dart_gc_controller.h", | 27 "dart_gc_controller.h", |
(...skipping 26 matching lines...) Expand all Loading... | |
52 deps = [ | 54 deps = [ |
53 "//base", | 55 "//base", |
54 "//mojo/common", | 56 "//mojo/common", |
55 "//mojo/public/cpp/system", | 57 "//mojo/public/cpp/system", |
56 ] | 58 ] |
57 | 59 |
58 public_deps = [ | 60 public_deps = [ |
59 "//dart/runtime:libdart", | 61 "//dart/runtime:libdart", |
60 "//dart/runtime/vm:libdart_platform", | 62 "//dart/runtime/vm:libdart_platform", |
61 ] | 63 ] |
64 | |
65 include_dirs = [ "//dart/runtime" ] | |
abarth-chromium
2015/07/21 18:02:41
Do we need to export this to dependent targets so
Cutch
2015/07/21 18:09:16
Done.
| |
62 } | 66 } |
63 | 67 |
64 # TODO(johnmccutchan): Move these sources into sky_engine and remove this. | 68 # TODO(johnmccutchan): Move these sources into sky_engine and remove this. |
65 source_set("tonic_wtf") { | 69 source_set("tonic_wtf") { |
66 sources = [ | 70 sources = [ |
67 "dart_converter_wtf.cc", | 71 "dart_converter_wtf.cc", |
68 "dart_converter_wtf.h", | 72 "dart_converter_wtf.h", |
69 "dart_string.cc", | 73 "dart_string.cc", |
70 "dart_string.h", | 74 "dart_string.h", |
71 "dart_string_cache.cc", | 75 "dart_string_cache.cc", |
72 "dart_string_cache.h", | 76 "dart_string_cache.h", |
73 "dart_value.cc", | 77 "dart_value.cc", |
74 "dart_value.h", | 78 "dart_value.h", |
75 ] | 79 ] |
76 | 80 |
77 deps = [ | 81 deps = [ |
78 "//base", | 82 "//base", |
79 "//mojo/common", | 83 "//mojo/common", |
80 "//mojo/public/cpp/system", | 84 "//mojo/public/cpp/system", |
81 ] | 85 ] |
82 | 86 |
83 public_deps = [ | 87 public_deps = [ |
84 "//dart/runtime:libdart", | 88 "//dart/runtime:libdart", |
85 "//dart/runtime/vm:libdart_platform", | 89 "//dart/runtime/vm:libdart_platform", |
86 ] | 90 ] |
87 } | 91 } |
OLD | NEW |