From f0c5ab0b8242ee869edfe250b832e1c7635c9eff Mon Sep 17 00:00:00 2001 From: John McCutchan Date: Thu, 28 May 2015 07:45:06 -0700 Subject: [PATCH] Roll Dart forward BUG= R=eseidel@chromium.org Review URL: https://codereview.chromium.org/1159443002 --- engine/bindings/BUILD.gn | 5 +++-- engine/core/BUILD.gn | 3 ++- engine/tonic/BUILD.gn | 3 ++- shell/BUILD.gn | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/engine/bindings/BUILD.gn b/engine/bindings/BUILD.gn index 105221bf2..477d4a6dc 100644 --- a/engine/bindings/BUILD.gn +++ b/engine/bindings/BUILD.gn @@ -36,7 +36,7 @@ source_set("bindings") { deps = [ "//base", "//dart/runtime/bin:embedded_dart_io", - "//dart/runtime/bin:libdart_withcore", + "//dart/runtime:libdart", "//mojo/public/c/system", "//mojo/public/cpp/system", "//sky/engine/core:prerequisites", @@ -370,7 +370,8 @@ action("generate_dart_sky") { source_set("generated_bindings") { deps = [ "//base", - "//dart/runtime/bin:libdart_withcore", + "//dart/runtime:libdart", + "//dart/runtime/vm:libdart_platform", "//gpu/command_buffer/client:gles2_c_lib", "//mojo/application", "//mojo/common", diff --git a/engine/core/BUILD.gn b/engine/core/BUILD.gn index 5a18a2dc4..1e9375e44 100644 --- a/engine/core/BUILD.gn +++ b/engine/core/BUILD.gn @@ -81,7 +81,8 @@ static_library("core") { "//sky/engine/platform", "//sky/engine/bindings", "//dart/runtime/bin:embedded_dart_io", - "//dart/runtime/bin:libdart_withcore", + "//dart/runtime:libdart", + "//dart/runtime/vm:libdart_platform", ] sources = sky_core_files diff --git a/engine/tonic/BUILD.gn b/engine/tonic/BUILD.gn index 1c109b2b9..673dfc6ef 100644 --- a/engine/tonic/BUILD.gn +++ b/engine/tonic/BUILD.gn @@ -52,6 +52,7 @@ source_set("tonic") { ] public_deps = [ - "//dart/runtime/bin:libdart_withcore", + "//dart/runtime:libdart", + "//dart/runtime/vm:libdart_platform", ] } diff --git a/shell/BUILD.gn b/shell/BUILD.gn index 1e087ddde..4256c0ba9 100644 --- a/shell/BUILD.gn +++ b/shell/BUILD.gn @@ -55,7 +55,7 @@ shared_library("sky_shell") { "//base", "//base:i18n", "//build/config/sanitizers:deps", - "//dart/runtime/bin:libdart_withcore", + "//dart/runtime:libdart", "//mojo/android:libsystem_java", "//mojo/common", "//mojo/edk/system", -- GitLab