mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:20:31 +00:00
f6ca2c1d8f
This deletes: tests/co19 tests/corelib tests/html tests/isolate tests/language tests/lib It does not delete tests/standalone because apparently there are tests in there that are not in standalone_2. (I assume they were added after the test migration. I don't know why they were added there.) I have tried to remove references to the old tests from various scripts and tools but may have missed some. (As you can imagine, grepping for "lib" does not have the best signal-to-noise ratio.) "It was a pleasure to burn. It was a special pleasure to see things eaten, to see things blackened and changed. With the brass nozzle in his fists, with this great python spitting its venomous kerosene upon the world, the blood pounded in his head, and his hands were the hands of some amazing conductor playing all the symphonies of blazing and burning to bring down the tatters and charcoal ruins of history." - Ray Bradbury, Fahrenheit 451 Change-Id: If3db4a50e7a5ee25aff8058b1483e2ce8e68424e Reviewed-on: https://dart-review.googlesource.com/c/75420 Commit-Queue: Bob Nystrom <rnystrom@google.com> Auto-Submit: Bob Nystrom <rnystrom@google.com> Reviewed-by: William Hesse <whesse@google.com> Reviewed-by: Terry Lucas <terry@google.com> Reviewed-by: Sigmund Cherem <sigmund@google.com>
113 lines
3.2 KiB
Text
113 lines
3.2 KiB
Text
# Copyright (c) 2016, 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/dart_action.gni")
|
|
import("../application_snapshot.gni")
|
|
|
|
group("dartanalyzer") {
|
|
deps = [
|
|
":generate_dartanalyzer_snapshot",
|
|
":generate_summary_strong",
|
|
]
|
|
}
|
|
|
|
analyzer_files = exec_script("../../tools/list_dart_files.py",
|
|
[
|
|
"absolute",
|
|
rebase_path("../../pkg/analyzer"),
|
|
],
|
|
"list lines")
|
|
|
|
application_snapshot("generate_dartanalyzer_snapshot") {
|
|
main_dart = "../../pkg/analyzer_cli/bin/analyzer.dart"
|
|
training_args = [
|
|
"--help",
|
|
# TODO(34616): This is broken on Fuchsia.
|
|
# "--dart-sdk=" + rebase_path("../../sdk/"),
|
|
# "--train-snapshot",
|
|
# rebase_path("../../tests/language_2/first_test.dart")
|
|
]
|
|
name = "dartanalyzer"
|
|
}
|
|
|
|
if (current_os == "linux") {
|
|
prebuilt_dart_action("dart_analyzer_dill") {
|
|
deps = [
|
|
"../../runtime/vm:vm_platform",
|
|
"../../runtime/vm:kernel_platform_files($dart_host_toolchain)",
|
|
]
|
|
dart_analyzer_script = "../../pkg/vm/bin/kernel_service.dart"
|
|
gen_kernel_script = "../../pkg/vm/bin/gen_kernel.dart"
|
|
|
|
inputs = [
|
|
gen_kernel_script,
|
|
dart_analyzer_script,
|
|
"$root_out_dir/vm_platform_strong.dill",
|
|
]
|
|
output = "$root_gen_dir/dart_analyzer.dill"
|
|
outputs = [
|
|
output,
|
|
]
|
|
|
|
depfile = "$root_gen_dir/dart_analyzer_dill.d"
|
|
abs_depfile = rebase_path(depfile)
|
|
rebased_output = rebase_path(output, root_out_dir)
|
|
vm_args = [
|
|
"--depfile=$abs_depfile",
|
|
"--depfile_output_filename=$rebased_output",
|
|
]
|
|
|
|
script = gen_kernel_script
|
|
|
|
args = [
|
|
"--packages=" + rebase_path("../../.packages"),
|
|
"--platform=" + rebase_path("$root_out_dir/vm_platform_strong.dill"),
|
|
"--aot",
|
|
"--no-embed-sources",
|
|
"--output=" + rebase_path("$root_gen_dir/dart_analyzer.dill"),
|
|
rebase_path(dart_analyzer_script),
|
|
]
|
|
}
|
|
|
|
aot_assembly("dartanalyzer_aot_assembly") {
|
|
main_dart = "$root_gen_dir/dart_analyzer.dill"
|
|
name = "dartanalyzer"
|
|
deps = [
|
|
":dart_analyzer_dill"
|
|
]
|
|
}
|
|
|
|
# This target is for Goma. It should not be used in the SDK.
|
|
executable("dartanalyzer_aot") {
|
|
deps = [
|
|
"../../runtime/bin:dart_precompiled_runtime_for_linking",
|
|
":dartanalyzer_aot_assembly",
|
|
]
|
|
sources = [
|
|
"$root_gen_dir/dartanalyzer.dart.S"
|
|
]
|
|
}
|
|
}
|
|
|
|
sdk_lib_files = exec_script("../../tools/list_dart_files.py",
|
|
[
|
|
"absolute",
|
|
rebase_path("../../sdk/lib"),
|
|
],
|
|
"list lines")
|
|
|
|
prebuilt_dart_action("generate_summary_strong") {
|
|
script = "../../pkg/analyzer/tool/summary/build_sdk_summaries.dart"
|
|
packages = "../../.packages"
|
|
inputs = sdk_lib_files + analyzer_files
|
|
output = "$root_gen_dir/strong.sum"
|
|
outputs = [
|
|
output,
|
|
]
|
|
args = [
|
|
"build-strong",
|
|
rebase_path(output),
|
|
rebase_path("../../sdk"),
|
|
]
|
|
}
|