[build] Use a variable for the Fuchsia SDK revision.

This allows the auto-roller to update the two platforms together.

Change-Id: I6d689fac84aec6cc20689800c3859426bb6453a7
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/263640
Reviewed-by: Alexander Aprelev <aam@google.com>
Commit-Queue: Ryan Macnak <rmacnak@google.com>
This commit is contained in:
Ryan Macnak 2022-10-11 18:12:39 +00:00 committed by Commit Queue
parent 0b5d908221
commit 1b5e8d6c7d

8
DEPS
View file

@ -77,6 +77,9 @@ vars = {
"clang_revision": "60d276923902051192eba692e5312e605c9d9f65",
"gn_revision": "0bcd37bd2b83f1a9ee17088037ebdfe6eab6d31a",
# Update from https://chrome-infra-packages.appspot.com/p/fuchsia/sdk/gn
"fuchsia_sdk_revision": "8658717573be7924d71b88c3d404ea2b4ca4984b",
# Ninja, runs the build based on files generated by GN.
"ninja_tag": "version:2@1.11.1.chromium.4",
@ -592,12 +595,11 @@ deps = {
"dep_type": "cipd",
},
# Update from https://chrome-infra-packages.appspot.com/p/fuchsia/sdk/gn
Var("dart_root") + "/third_party/fuchsia/sdk/mac": {
"packages": [
{
"package": "fuchsia/sdk/gn/mac-amd64",
"version": "git_revision:8658717573be7924d71b88c3d404ea2b4ca4984b"
"version": "git_revision:" + Var("fuchsia_sdk_revision"),
}
],
"condition": 'host_os == "mac" and host_cpu == "x64"',
@ -607,7 +609,7 @@ deps = {
"packages": [
{
"package": "fuchsia/sdk/gn/linux-amd64",
"version": "git_revision:8658717573be7924d71b88c3d404ea2b4ca4984b"
"version": "git_revision:" + Var("fuchsia_sdk_revision"),
}
],
"condition": 'host_os == "linux" and host_cpu == "x64"',