diff --git a/engine/bindings/BUILD.gn b/engine/bindings/BUILD.gn index 105221bf2fdc6dd46260d256a73901af5b5be080..477d4a6dc5d1f8e83bb3a0c52dd71d79508f670d 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 5a18a2dc40f4a087e6eb45e03c0e6ce8cadb3142..1e9375e44a0bff35d8421e3597fae0d9d5cdc9d7 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 1c109b2b9298c48b1a154b9f5538c7315e374255..673dfc6ef56787f8bcd83101221eff79ac535965 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 1e087ddde7932087839db6aeb2fb15d2de453e2b..4256c0ba97ae14bc2a3c4e660fb85b339753188e 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",