| 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 19 matching lines...) Expand all Loading... |
| 30 "dart_invoke.cc", | 30 "dart_invoke.cc", |
| 31 "dart_invoke.h", | 31 "dart_invoke.h", |
| 32 "dart_isolate_scope.cc", | 32 "dart_isolate_scope.cc", |
| 33 "dart_isolate_scope.h", | 33 "dart_isolate_scope.h", |
| 34 "dart_library_loader.cc", | 34 "dart_library_loader.cc", |
| 35 "dart_library_loader.h", | 35 "dart_library_loader.h", |
| 36 "dart_library_provider.cc", | 36 "dart_library_provider.cc", |
| 37 "dart_library_provider.h", | 37 "dart_library_provider.h", |
| 38 "dart_library_provider_files.cc", | 38 "dart_library_provider_files.cc", |
| 39 "dart_library_provider_files.h", | 39 "dart_library_provider_files.h", |
| 40 "dart_library_provider_network.cc", |
| 41 "dart_library_provider_network.h", |
| 40 "dart_persistent_value.cc", | 42 "dart_persistent_value.cc", |
| 41 "dart_persistent_value.h", | 43 "dart_persistent_value.h", |
| 42 "dart_snapshot_loader.cc", | 44 "dart_snapshot_loader.cc", |
| 43 "dart_snapshot_loader.h", | 45 "dart_snapshot_loader.h", |
| 44 "dart_state.cc", | 46 "dart_state.cc", |
| 45 "dart_state.h", | 47 "dart_state.h", |
| 46 "dart_timer_heap.cc", | 48 "dart_timer_heap.cc", |
| 47 "dart_timer_heap.h", | 49 "dart_timer_heap.h", |
| 48 "dart_wrappable.cc", | 50 "dart_wrappable.cc", |
| 49 "dart_wrappable.h", | 51 "dart_wrappable.h", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "//base", | 91 "//base", |
| 90 "//mojo/common", | 92 "//mojo/common", |
| 91 "//mojo/public/cpp/system", | 93 "//mojo/public/cpp/system", |
| 92 ] | 94 ] |
| 93 | 95 |
| 94 public_deps = [ | 96 public_deps = [ |
| 95 "//dart/runtime:libdart", | 97 "//dart/runtime:libdart", |
| 96 "//dart/runtime/vm:libdart_platform", | 98 "//dart/runtime/vm:libdart_platform", |
| 97 ] | 99 ] |
| 98 } | 100 } |
| OLD | NEW |