| 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 21 matching lines...) Expand all Loading... |
| 32 "dart_library_loader.cc", | 32 "dart_library_loader.cc", |
| 33 "dart_library_loader.h", | 33 "dart_library_loader.h", |
| 34 "dart_library_provider.cc", | 34 "dart_library_provider.cc", |
| 35 "dart_library_provider.h", | 35 "dart_library_provider.h", |
| 36 "dart_persistent_value.cc", | 36 "dart_persistent_value.cc", |
| 37 "dart_persistent_value.h", | 37 "dart_persistent_value.h", |
| 38 "dart_snapshot_loader.cc", | 38 "dart_snapshot_loader.cc", |
| 39 "dart_snapshot_loader.h", | 39 "dart_snapshot_loader.h", |
| 40 "dart_state.cc", | 40 "dart_state.cc", |
| 41 "dart_state.h", | 41 "dart_state.h", |
| 42 "dart_string.cc", | |
| 43 "dart_string.h", | |
| 44 "dart_string_cache.cc", | |
| 45 "dart_string_cache.h", | |
| 46 "dart_timer_heap.cc", | 42 "dart_timer_heap.cc", |
| 47 "dart_timer_heap.h", | 43 "dart_timer_heap.h", |
| 48 "dart_value.cc", | |
| 49 "dart_value.h", | |
| 50 "dart_wrappable.cc", | 44 "dart_wrappable.cc", |
| 51 "dart_wrappable.h", | 45 "dart_wrappable.h", |
| 52 "dart_wrapper_info.h", | 46 "dart_wrapper_info.h", |
| 53 "float32_list.cc", | 47 "float32_list.cc", |
| 54 "float32_list.h", | 48 "float32_list.h", |
| 55 "mojo_converter.h", | 49 "mojo_converter.h", |
| 56 ] | 50 ] |
| 57 | 51 |
| 58 deps = [ | 52 deps = [ |
| 59 "//base", | 53 "//base", |
| 60 "//mojo/common", | 54 "//mojo/common", |
| 61 "//mojo/public/cpp/system", | 55 "//mojo/public/cpp/system", |
| 62 "//sky/engine/wtf", | |
| 63 ] | 56 ] |
| 64 | 57 |
| 65 public_deps = [ | 58 public_deps = [ |
| 59 "//dart/runtime:libdart", |
| 60 "//dart/runtime/vm:libdart_platform", |
| 61 ] |
| 62 } |
| 63 |
| 64 # TODO(johnmccutchan): Move these sources into sky_engine and remove this. |
| 65 source_set("tonic_wtf") { |
| 66 sources = [ |
| 67 "dart_converter_wtf.cc", |
| 68 "dart_converter_wtf.h", |
| 69 "dart_string.cc", |
| 70 "dart_string.h", |
| 71 "dart_string_cache.cc", |
| 72 "dart_string_cache.h", |
| 73 "dart_value.cc", |
| 74 "dart_value.h", |
| 75 ] |
| 76 |
| 77 deps = [ |
| 78 "//base", |
| 79 "//mojo/common", |
| 80 "//mojo/public/cpp/system", |
| 81 ] |
| 82 |
| 83 public_deps = [ |
| 66 "//dart/runtime:libdart", | 84 "//dart/runtime:libdart", |
| 67 "//dart/runtime/vm:libdart_platform", | 85 "//dart/runtime/vm:libdart_platform", |
| 68 ] | 86 ] |
| 69 } | 87 } |
| OLD | NEW |