b99466d472
This reverts commit 5cbf10febe.
TEST=pkg/dds/devtools_observatory_connection_test.dart
Change-Id: I682d009f784b930094dae9b7d4e9a66efffb6ee8
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/198561
Reviewed-by: Siva Annamalai <asiva@google.com>
56 lines
1.5 KiB
Plaintext
56 lines
1.5 KiB
Plaintext
# Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
import("../../build/dart/copy_tree.gni")
|
|
import("../application_snapshot.gni")
|
|
|
|
group("dartdev") {
|
|
public_deps = [
|
|
":copy_dartdev_kernel",
|
|
":copy_dartdev_snapshot",
|
|
":copy_prebuilt_devtools",
|
|
]
|
|
}
|
|
|
|
copy("copy_dartdev_kernel") {
|
|
visibility = [ ":dartdev" ]
|
|
public_deps = [ ":generate_dartdev_kernel" ]
|
|
sources = [ "$root_gen_dir/dartdev.dill" ]
|
|
outputs = [ "$root_out_dir/dartdev.dill" ]
|
|
}
|
|
|
|
application_snapshot("generate_dartdev_kernel") {
|
|
dart_snapshot_kind = "kernel"
|
|
main_dart = "../../pkg/dartdev/bin/dartdev.dart"
|
|
training_args = []
|
|
deps = [ "../dds:dds" ]
|
|
output = "$root_gen_dir/dartdev.dill"
|
|
}
|
|
|
|
copy("copy_dartdev_snapshot") {
|
|
visibility = [ ":dartdev" ]
|
|
public_deps = [ ":generate_dartdev_snapshot" ]
|
|
sources = [ "$root_gen_dir/dartdev.dart.snapshot" ]
|
|
outputs = [ "$root_out_dir/dartdev.dart.snapshot" ]
|
|
}
|
|
|
|
application_snapshot("generate_dartdev_snapshot") {
|
|
main_dart = "../../pkg/dartdev/bin/dartdev.dart"
|
|
training_args = [ "--help" ]
|
|
deps = [ "../dds:dds" ]
|
|
output = "$root_gen_dir/dartdev.dart.snapshot"
|
|
}
|
|
|
|
copy_trees("copy_prebuilt_devtools") {
|
|
sources = [
|
|
{
|
|
target = "copy_prebuilt_devtools"
|
|
visibility = [ ":dartdev" ]
|
|
source = "../../third_party/devtools/web"
|
|
dest = "$root_out_dir/devtools"
|
|
ignore_patterns = "{}"
|
|
},
|
|
]
|
|
}
|