Commit 8db01995 authored by Stephen Roe's avatar Stephen Roe Committed by Commit Bot

Add third_party/qemu-linux-arm64 to DEPS runhooks.

qemu-linux-arm64 is from the /fuchsia/qemu/linux-arm64 CIPD package.

Bug: 1015177
Change-Id: Ie193d18e4b52059ad853cee07075979b1faea038
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1865751Reviewed-by: default avatarScott Violet <sky@chromium.org>
Reviewed-by: default avatarKevin Marshall <kmarshall@chromium.org>
Commit-Queue: Stephen Roe <steveroe@google.com>
Cr-Commit-Position: refs/heads/master@{#708478}
parent 2130dffd
......@@ -121,6 +121,10 @@ vars = {
# Wildcards are supported (e.g. "qemu.*").
'checkout_fuchsia_boot_images': "qemu.x64,qemu.arm64",
# By default, do not check out files required to run fuchsia tests in
# qemu on linux-arm64 machines.
'checkout_fuchsia_for_arm64_host': False,
# By Default, do not checkout AEMU, as it is too big. This can be overridden
# e.g. with custom_vars.
# TODO(chonggu): Delete once AEMU package is small enough.
......@@ -943,6 +947,19 @@ deps = {
'condition': 'checkout_linux',
},
# TODO(steveroe): Get this from GCS instead of CIPD once the arm64 sdk is
# released using the same version specified in build/fuchsia/linux.sdk.sha1.
'src/third_party/fuchsia-sdk-arm64': {
'packages': [
{
'package': 'fuchsia/sdk/core/linux-arm64',
'version': 'J4QyYSv0T-30YSgD6d34XHRpck2ckNh-4MMhsRYj4zoC'
},
],
'condition': 'host_os == "linux" and checkout_fuchsia and checkout_fuchsia_for_arm64_host',
'dep_type': 'cipd',
},
'src/third_party/grpc/src': {
'url': Var('chromium_git') + '/external/github.com/grpc/grpc.git' + '@' + '74b981a6a3d9ba17f3acae1d72b9109325ef656d',
},
......@@ -1328,6 +1345,17 @@ deps = {
'src/third_party/pywebsocket/src':
Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2',
'src/third_party/qemu-linux-arm64': {
'packages': [
{
'package': 'fuchsia/qemu/linux-arm64',
'version': 'b1b61a39e3ab0935cd030f27e01740578b04b967'
},
],
'condition': 'host_os == "linux" and checkout_fuchsia and checkout_fuchsia_for_arm64_host',
'dep_type': 'cipd',
},
'src/third_party/qemu-linux-x64': {
'packages': [
{
......
......@@ -84,6 +84,7 @@
/freetype/src
/fuchsia-sdk/images
/fuchsia-sdk/sdk
/fuchsia-sdk-arm64
/gestures/gestures
/gles2_conform
/glfw/src
......@@ -194,6 +195,7 @@
/python_26
/pywebsocket/src
/pywebsocket/src
/qemu-linux-arm64
/qemu-linux-x64
/qemu-mac-x64
/quic_trace/src
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment