[infra] Add package:vector_math to DEPS.

Change-Id: I22f7038fb5bb4ca8d48f9151001ea44c0992dca8
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/153772
Reviewed-by: Régis Crelier <regis@google.com>
Commit-Queue: Jonas Termansen <sortie@google.com>
This commit is contained in:
Jonas Termansen 2020-07-09 17:02:02 +00:00 committed by commit-bot@chromium.org
parent 6dcd45f2b3
commit 18081c7486
3 changed files with 14 additions and 3 deletions

View file

@ -11,7 +11,7 @@
"constraint, update this by running tools/generate_package_config.dart."
],
"configVersion": 2,
"generated": "2020-06-29T11:21:54.984521",
"generated": "2020-07-09T13:10:41.742079",
"generator": "tools/generate_package_config.dart",
"packages": [
{
@ -83,7 +83,7 @@
"name": "bazel_worker",
"rootUri": "../third_party/pkg/bazel_worker",
"packageUri": "lib/",
"languageVersion": "2.1"
"languageVersion": "2.3"
},
{
"name": "benchmark_harness",
@ -664,6 +664,12 @@
"packageUri": "lib/",
"languageVersion": "2.0"
},
{
"name": "vector_math",
"rootUri": "../third_party/pkg/vector_math",
"packageUri": "lib/",
"languageVersion": "2.9"
},
{
"name": "vm",
"rootUri": "../pkg/vm",
@ -707,4 +713,4 @@
"languageVersion": "2.4"
}
]
}
}

View file

@ -110,6 +110,7 @@ testing:pkg/testing/lib
tflite_native:third_party/pkg/tflite_native/lib
typed_data:third_party/pkg/typed_data/lib
usage:third_party/pkg/usage/lib
vector_math:third_party/pkg/vector_math/lib
vm:pkg/vm/lib
vm_service:pkg/vm_service/lib
vm_snapshot_analysis:pkg/vm_snapshot_analysis/lib

4
DEPS
View file

@ -154,6 +154,7 @@ vars = {
"tflite_native_rev": "3c777c40608a2a9f1427bfe0028ab48e7116b4c1",
"typed_data_tag": "0c369b73a9b7ebf042c06512951bfe5b52b84a5f",
"usage_tag": "3.4.0",
"vector_math_rev": "90631fbb609f61d42f28621253c0ec9fc6a326d2",
"watcher_rev": "fc3c9aae5d31d707b3013b42634dde8d8a1161b4",
"web_components_rev": "8f57dac273412a7172c8ade6f361b407e2e4ed02",
"web_socket_channel_rev": "490061ef0e22d3c8460ad2802f9948219365ad6b",
@ -434,6 +435,9 @@ deps = {
Var("dart_git") + "typed_data.git" + "@" + Var("typed_data_tag"),
Var("dart_root") + "/third_party/pkg/usage":
Var("dart_git") + "usage.git" + "@" + Var("usage_tag"),
Var("dart_root") + "/third_party/pkg/vector_math":
Var("dart_git") + "external/github.com/google/vector_math.dart.git" +
"@" + Var("vector_math_rev"),
Var("dart_root") + "/third_party/pkg/watcher":
Var("dart_git") + "watcher.git" + "@" + Var("watcher_rev"),
Var("dart_root") + "/third_party/pkg/web_components":