mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:49:00 +00:00
Remove unittest from DEPS, .packages, package_config.json
Change-Id: I062667db4bc5fe4b710aad814cce69a3004bb164 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/140361 Reviewed-by: Bob Nystrom <rnystrom@google.com> Reviewed-by: Nate Bosch <nbosch@google.com> Auto-Submit: Kevin Moore <kevmoo@google.com>
This commit is contained in:
parent
0fdc2816c0
commit
dacd22bdc2
4 changed files with 0 additions and 36 deletions
|
@ -735,18 +735,6 @@
|
|||
"packageUri": "lib/",
|
||||
"languageVersion": "2.0"
|
||||
},
|
||||
{
|
||||
"name": "unittest",
|
||||
"rootUri": "../third_party/pkg/unittest",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.0"
|
||||
},
|
||||
{
|
||||
"name": "unittest-orig",
|
||||
"rootUri": "../third_party/pkg/unittest-orig",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "1.0"
|
||||
},
|
||||
{
|
||||
"name": "usage",
|
||||
"rootUri": "../third_party/pkg/usage",
|
||||
|
|
|
@ -111,7 +111,6 @@ test_runner:pkg/test_runner/lib
|
|||
testing:pkg/testing/lib
|
||||
tflite_native:third_party/pkg/tflite_native/lib
|
||||
typed_data:third_party/pkg/typed_data/lib
|
||||
unittest:third_party/pkg/unittest/lib
|
||||
usage:third_party/pkg/usage/lib
|
||||
vm:pkg/vm/lib
|
||||
vm_service:pkg/vm_service/lib
|
||||
|
|
7
DEPS
7
DEPS
|
@ -145,7 +145,6 @@ vars = {
|
|||
"test_tag": "test_core-v0.3.2",
|
||||
"tflite_native_rev": "3c777c40608a2a9f1427bfe0028ab48e7116b4c1",
|
||||
"typed_data_tag": "1.1.6",
|
||||
"unittest_rev": "2b8375bc98bb9dc81c539c91aaea6adce12e1072",
|
||||
"usage_tag": "3.4.0",
|
||||
"watcher_rev": "0.9.7+14",
|
||||
"web_components_rev": "8f57dac273412a7172c8ade6f361b407e2e4ed02",
|
||||
|
@ -405,12 +404,6 @@ deps = {
|
|||
"@" + Var("test_reflective_loader_tag"),
|
||||
Var("dart_root") + "/third_party/pkg/typed_data":
|
||||
Var("dart_git") + "typed_data.git" + "@" + Var("typed_data_tag"),
|
||||
# Unittest is an early version, 0.11.x, of the package "test"
|
||||
# Do not use it in any new tests. Fetched from chromium_git to avoid
|
||||
# race condition in cache with pkg/test.
|
||||
Var("dart_root") + "/third_party/pkg/unittest":
|
||||
Var("chromium_git") + "/external/github.com/dart-lang/test.git" +
|
||||
"@" + Var("unittest_rev"),
|
||||
Var("dart_root") + "/third_party/pkg/usage":
|
||||
Var("dart_git") + "usage.git" + "@" + Var("usage_tag"),
|
||||
Var("dart_root") + "/third_party/pkg/watcher":
|
||||
|
|
|
@ -218,7 +218,6 @@ group("dartdevc_test_kernel_pkg") {
|
|||
":matcher_js",
|
||||
":path_js",
|
||||
":stack_trace_js",
|
||||
":unittest_js",
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -329,21 +328,6 @@ dartdevc_kernel_compile("stack_trace_js") {
|
|||
package_dependencies = [ "path" ]
|
||||
}
|
||||
|
||||
# TODO(rnystrom): Remove this when unittest is no longer used. Also remove
|
||||
# any of the above packages that are only here because unittest uses them.
|
||||
dartdevc_kernel_compile("unittest_js") {
|
||||
package = "unittest"
|
||||
package_dependencies = [
|
||||
"path",
|
||||
"stack_trace",
|
||||
]
|
||||
extra_libraries = [
|
||||
"html_config",
|
||||
"html_individual_config",
|
||||
"html_enhanced_config",
|
||||
]
|
||||
}
|
||||
|
||||
compile_platform("dartdevc_platform") {
|
||||
single_root_scheme = "org-dartlang-sdk"
|
||||
single_root_base = rebase_path("../../")
|
||||
|
|
Loading…
Reference in a new issue