| 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_dependency_catcher.cc", |
| 17 "dart_dependency_catcher.h", |
| 16 "dart_error.cc", | 18 "dart_error.cc", |
| 17 "dart_error.h", | 19 "dart_error.h", |
| 18 "dart_exception_factory.cc", | 20 "dart_exception_factory.cc", |
| 19 "dart_exception_factory.h", | 21 "dart_exception_factory.h", |
| 20 "dart_gc_context.cc", | 22 "dart_gc_context.cc", |
| 21 "dart_gc_context.h", | 23 "dart_gc_context.h", |
| 22 "dart_gc_controller.cc", | 24 "dart_gc_controller.cc", |
| 23 "dart_gc_controller.h", | 25 "dart_gc_controller.h", |
| 24 "dart_gc_visitor.cc", | 26 "dart_gc_visitor.cc", |
| 25 "dart_gc_visitor.h", | 27 "dart_gc_visitor.h", |
| 26 "dart_invoke.cc", | 28 "dart_invoke.cc", |
| 27 "dart_invoke.h", | 29 "dart_invoke.h", |
| 28 "dart_isolate_scope.cc", | 30 "dart_isolate_scope.cc", |
| 29 "dart_isolate_scope.h", | 31 "dart_isolate_scope.h", |
| 32 "dart_library_loader.cc", |
| 33 "dart_library_loader.h", |
| 34 "dart_library_provider.cc", |
| 35 "dart_library_provider.h", |
| 30 "dart_persistent_value.cc", | 36 "dart_persistent_value.cc", |
| 31 "dart_persistent_value.h", | 37 "dart_persistent_value.h", |
| 38 "dart_snapshot_loader.cc", |
| 39 "dart_snapshot_loader.h", |
| 32 "dart_state.cc", | 40 "dart_state.cc", |
| 33 "dart_state.h", | 41 "dart_state.h", |
| 34 "dart_string.cc", | 42 "dart_string.cc", |
| 35 "dart_string.h", | 43 "dart_string.h", |
| 36 "dart_string_cache.cc", | 44 "dart_string_cache.cc", |
| 37 "dart_string_cache.h", | 45 "dart_string_cache.h", |
| 38 "dart_timer_heap.cc", | 46 "dart_timer_heap.cc", |
| 39 "dart_timer_heap.h", | 47 "dart_timer_heap.h", |
| 40 "dart_value.cc", | 48 "dart_value.cc", |
| 41 "dart_value.h", | 49 "dart_value.h", |
| 42 "dart_wrappable.cc", | 50 "dart_wrappable.cc", |
| 43 "dart_wrappable.h", | 51 "dart_wrappable.h", |
| 44 "dart_wrapper_info.h", | 52 "dart_wrapper_info.h", |
| 45 "float32_list.cc", | 53 "float32_list.cc", |
| 46 "float32_list.h", | 54 "float32_list.h", |
| 47 "mojo_converter.h", | 55 "mojo_converter.h", |
| 48 ] | 56 ] |
| 49 | 57 |
| 50 deps = [ | 58 deps = [ |
| 51 "//base", | 59 "//base", |
| 60 "//mojo/common", |
| 52 "//mojo/public/cpp/system", | 61 "//mojo/public/cpp/system", |
| 53 "//sky/engine/wtf", | 62 "//sky/engine/wtf", |
| 54 ] | 63 ] |
| 55 | 64 |
| 56 public_deps = [ | 65 public_deps = [ |
| 57 "//dart/runtime:libdart", | 66 "//dart/runtime:libdart", |
| 58 "//dart/runtime/vm:libdart_platform", | 67 "//dart/runtime/vm:libdart_platform", |
| 59 ] | 68 ] |
| 60 } | 69 } |
| OLD | NEW |