OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("tonic") { |
| 6 sources = [ |
| 7 "dart_api_scope.h", |
| 8 "dart_builtin.cc", |
| 9 "dart_builtin.h", |
| 10 "dart_class_library.cc", |
| 11 "dart_class_library.h", |
| 12 "dart_class_provider.cc", |
| 13 "dart_class_provider.h", |
| 14 "dart_converter.cc", |
| 15 "dart_converter.h", |
| 16 "dart_dependency_catcher.cc", |
| 17 "dart_dependency_catcher.h", |
| 18 "dart_error.cc", |
| 19 "dart_error.h", |
| 20 "dart_exception_factory.cc", |
| 21 "dart_exception_factory.h", |
| 22 "dart_gc_context.cc", |
| 23 "dart_gc_context.h", |
| 24 "dart_gc_controller.cc", |
| 25 "dart_gc_controller.h", |
| 26 "dart_gc_visitor.cc", |
| 27 "dart_gc_visitor.h", |
| 28 "dart_invoke.cc", |
| 29 "dart_invoke.h", |
| 30 "dart_isolate_scope.cc", |
| 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", |
| 36 "dart_persistent_value.cc", |
| 37 "dart_persistent_value.h", |
| 38 "dart_snapshot_loader.cc", |
| 39 "dart_snapshot_loader.h", |
| 40 "dart_state.cc", |
| 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", |
| 47 "dart_timer_heap.h", |
| 48 "dart_value.cc", |
| 49 "dart_value.h", |
| 50 "dart_wrappable.cc", |
| 51 "dart_wrappable.h", |
| 52 "dart_wrapper_info.h", |
| 53 "float32_list.cc", |
| 54 "float32_list.h", |
| 55 "mojo_converter.h", |
| 56 ] |
| 57 |
| 58 deps = [ |
| 59 "//base", |
| 60 "//mojo/common", |
| 61 "//mojo/public/cpp/system", |
| 62 "//sky/engine/wtf", |
| 63 ] |
| 64 |
| 65 public_deps = [ |
| 66 "//dart/runtime:libdart", |
| 67 "//dart/runtime/vm:libdart_platform", |
| 68 ] |
| 69 } |
OLD | NEW |