[ddc] Delete unused target dartdevc_patch_sdk

Change-Id: Ia15ffea7f5198125d6ce1b8b04ef8d830678d420
Fixes: https://github.com/dart-lang/sdk/issues/42825
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/156041
Reviewed-by: Sigmund Cherem <sigmund@google.com>
Commit-Queue: Nicholas Shahan <nshahan@google.com>
This commit is contained in:
Nicholas Shahan 2020-07-29 01:10:51 +00:00 committed by commit-bot@chromium.org
parent 5e6d949757
commit bad34bdb9d

View file

@ -99,39 +99,6 @@ dart2js_compile("stack_trace_mapper") {
out = "$root_out_dir/dev_compiler/build/web/dart_stack_trace_mapper.js"
}
# Apply dev_compiler's patch files to create the Dart version of the dartdevc
# SDK.
prebuilt_dart_action("dartdevc_patch_sdk") {
deps = [
":dartdevc_files_stamp",
":dartdevc_sdk_patch_stamp",
# The patch script uses several packages, including analyzer, so consider
# it dirty if any of those change.
"../../pkg:pkg_files_stamp",
]
script = "../../pkg/dev_compiler/tool/patch_sdk.dart"
inputs = sdk_lib_files
# Arbitrarily use the version file as a token file to check against to see if
# the sources have changed.
# TODO(rnystrom): List the outputs more precisely?
outputs = [ "$patched_sdk_dir/version" ]
vm_args = [ "-Dsdk_hash=$sdk_hash" ]
args = [
"--libraries",
rebase_path("$sdk_root/lib/libraries.json"),
"--target",
"dartdevc",
"--out",
rebase_path("$patched_sdk_dir/"),
]
}
# Builds everything needed to run dartdevc tests using test.dart.
group("dartdevc_test") {
deps = [