0

Move reclient binaries to src/buildtools.

Move the binaries from src/tools to src/buildtools.  Update both DEPS
and buildtools/DEPS.  The matching checks to PRESUBMIT.py will be in
a following CL.

Bug: 1149386
Change-Id: Iaa420944f510c6e921f6f1366f735a580358ce23
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575097
Reviewed-by: Dirk Pranke <dpranke@google.com>
Commit-Queue: Michael Savigny <msavigny@google.com>
Cr-Commit-Position: refs/heads/master@{#834754}
This commit is contained in:
Michael Savigny
2020-12-08 17:57:33 +00:00
committed by Chromium LUCI CQ
parent 5d8b8bf642
commit 8247d2d267
3 changed files with 18 additions and 1 deletions

2
DEPS

@ -449,7 +449,7 @@ deps = {
'dep_type': 'cipd',
'condition': 'host_os == "win"',
},
'src/tools/reclient': {
'src/buildtools/reclient': {
'packages': [
{
'package': 'infra/rbe/client/${{platform}}',

@ -8,6 +8,7 @@ linux64/gn
mac/.versions
mac/clang-format
mac/gn
reclient
third_party/libc++/trunk
third_party/libc++abi/trunk
third_party/libunwind/trunk

@ -16,6 +16,12 @@ vars = {
# GN CIPD package version.
'gn_version': 'git_revision:53d92014bf94c3893886470a1c7c1289f8818db0',
# By default, do not checkout the re-client binaries.
'checkout_reclient': False,
# reclient CIPD package version
'reclient_version': 're_client_version:0.17.0.7d283ef',
# When changing these, also update the svn revisions in deps_revisions.gni
'clang_format_revision': '96636aa0e9f047f17447f2d45a094d0b59ed7917',
'libcxx_revision': 'd9040c75cfea5928c804ab7c235fed06a63f743a',
@ -69,4 +75,14 @@ deps = {
'dep_type': 'cipd',
'condition': 'host_os == "win"',
},
'reclient': {
'packages': [
{
'package': 'infra/rbe/client/${{platform}}',
'version': Var('reclient_version'),
}
],
'dep_type': 'cipd',
'condition': '(host_os == "linux" or host_os == "windows") and checkout_reclient',
},
}