| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "//base", | 61 "//base", |
| 62 "//build/config/sanitizers:deps", | 62 "//build/config/sanitizers:deps", |
| 63 "//mojo/data_pipe_utils", | 63 "//mojo/data_pipe_utils", |
| 64 "//mojo/message_pump", | 64 "//mojo/message_pump", |
| 65 "//mojo/public/cpp/system", | 65 "//mojo/public/cpp/system", |
| 66 "//mojo/services/network/public/interfaces", | 66 "//mojo/services/network/public/interfaces", |
| 67 "//url", | 67 "//url", |
| 68 ] | 68 ] |
| 69 | 69 |
| 70 public_deps = [ | 70 public_deps = [ |
| 71 "//dart/runtime:libdart", | 71 "//mojo/public/third_party/dart/runtime:libdart", |
| 72 "//dart/runtime/vm:libdart_platform", | 72 "//mojo/public/third_party/dart/runtime/vm:libdart_platform", |
| 73 ] | 73 ] |
| 74 | 74 |
| 75 public_configs = [ ":tonic_config" ] | 75 public_configs = [ ":tonic_config" ] |
| 76 } | 76 } |
| 77 | 77 |
| 78 config("tonic_config") { | 78 config("tonic_config") { |
| 79 include_dirs = [ "//dart/runtime" ] | 79 include_dirs = [ "//mojo/public/third_party/dart/runtime" ] |
| 80 } | 80 } |
| 81 | 81 |
| 82 # TODO(johnmccutchan): Move these sources into sky_engine and remove this. | 82 # TODO(johnmccutchan): Move these sources into sky_engine and remove this. |
| 83 source_set("tonic_wtf") { | 83 source_set("tonic_wtf") { |
| 84 sources = [ | 84 sources = [ |
| 85 "dart_converter_wtf.cc", | 85 "dart_converter_wtf.cc", |
| 86 "dart_converter_wtf.h", | 86 "dart_converter_wtf.h", |
| 87 "dart_string.cc", | 87 "dart_string.cc", |
| 88 "dart_string.h", | 88 "dart_string.h", |
| 89 "dart_string_cache.cc", | 89 "dart_string_cache.cc", |
| 90 "dart_string_cache.h", | 90 "dart_string_cache.h", |
| 91 "dart_value.cc", | 91 "dart_value.cc", |
| 92 "dart_value.h", | 92 "dart_value.h", |
| 93 ] | 93 ] |
| 94 | 94 |
| 95 deps = [ | 95 deps = [ |
| 96 "//base", | 96 "//base", |
| 97 "//mojo/common", | 97 "//mojo/common", |
| 98 "//mojo/public/cpp/system", | 98 "//mojo/public/cpp/system", |
| 99 ] | 99 ] |
| 100 | 100 |
| 101 public_deps = [ | 101 public_deps = [ |
| 102 "//dart/runtime:libdart", | 102 "//mojo/public/third_party/dart/runtime:libdart", |
| 103 "//dart/runtime/vm:libdart_platform", | 103 "//mojo/public/third_party/dart/runtime/vm:libdart_platform", |
| 104 ] | 104 ] |
| 105 } | 105 } |
| OLD | NEW |