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", |
(...skipping 20 matching lines...) Expand all Loading... |
31 "dart_state.h", | 31 "dart_state.h", |
32 "dart_string.cc", | 32 "dart_string.cc", |
33 "dart_string.h", | 33 "dart_string.h", |
34 "dart_string_cache.cc", | 34 "dart_string_cache.cc", |
35 "dart_string_cache.h", | 35 "dart_string_cache.h", |
36 "dart_value.cc", | 36 "dart_value.cc", |
37 "dart_value.h", | 37 "dart_value.h", |
38 "dart_wrappable.cc", | 38 "dart_wrappable.cc", |
39 "dart_wrappable.h", | 39 "dart_wrappable.h", |
40 "dart_wrapper_info.h", | 40 "dart_wrapper_info.h", |
| 41 "mojo_converter.h", |
41 ] | 42 ] |
42 | 43 |
43 deps = [ | 44 deps = [ |
44 "//base", | 45 "//base", |
| 46 "//mojo/public/cpp/system", |
45 "//sky/engine/wtf", | 47 "//sky/engine/wtf", |
46 ] | 48 ] |
47 | 49 |
48 public_deps = [ | 50 public_deps = [ |
49 "//dart/runtime/bin:libdart_withcore", | 51 "//dart/runtime/bin:libdart_withcore", |
50 ] | 52 ] |
51 } | 53 } |
OLD | NEW |