Revert "[flutter_runner] Use sky_engine from the topaz tree (#43684)" (#43913)

This reverts commit e091d724f6.
This commit is contained in:
Kaushik Iska 2019-10-31 11:59:45 -07:00 committed by GitHub
parent 26d09f1ab4
commit f798cb6d29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -13,15 +13,15 @@ dart_library("flutter") {
disable_analysis = true
deps = [
"//third_party/dart/third_party/pkg/intl",
"//third_party/dart-pkg/pub/async",
"//third_party/dart-pkg/pub/collection",
"//third_party/dart-pkg/pub/meta",
"//third_party/dart-pkg/pub/typed_data",
"//third_party/dart-pkg/pub/vector_math",
"//third_party/dart/third_party/pkg/intl",
]
if (is_fuchsia) {
deps += [ "//topaz/runtime/sky_engine:sky_engine_dart" ]
deps += [ "$flutter_root/sky/packages/sky_engine:sky_engine_dart" ]
}
}

View File

@ -20,11 +20,11 @@ dart_library("flutter_driver") {
"//third_party/dart-pkg/pub/json_rpc_2",
"//third_party/dart-pkg/pub/meta",
"//third_party/dart-pkg/pub/path",
"//third_party/dart-pkg/pub/vm_service_client",
"//third_party/dart-pkg/pub/web_socket_channel",
"//third_party/dart-pkg/pub/vm_service_client",
]
if (is_fuchsia) {
deps += [ "//topaz/runtime/sky_engine:sky_engine_dart" ]
deps += [ "$flutter_root/sky/packages/sky_engine:sky_engine_dart" ]
}
}