Skip to content

Commit

Permalink
Add re-client linux binaries to DEPS.
Browse files Browse the repository at this point in the history
Fetch re-client binaries CIPD package via CIPD during gclient sync step.

Bug: 1149386
Change-Id: Iaa3546c4a7df2f6e83d1e2ad5b0a755d2df47b5f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2542303
Auto-Submit: Michael Savigny <msavigny@google.com>
Commit-Queue: Dirk Pranke <dpranke@google.com>
Reviewed-by: Dirk Pranke <dpranke@google.com>
Cr-Commit-Position: refs/heads/master@{#829730}
  • Loading branch information
MikeS-rec authored and Commit Bot committed Nov 20, 2020
1 parent 757f601 commit e5e0941
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ vs-chromium-project.txt
/tools/metrics/histograms/histograms_xml/*.before.pretty-print.xml
/tools/metrics/histograms/enums.before.pretty-print.xml
/tools/page_cycler/acid3
/tools/reclient
/tools/skia_goldctl/
/tools/swarming_client
/tools/tryserver
Expand Down
14 changes: 13 additions & 1 deletion DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ vars = {
# e.g. with custom_vars.
'checkout_ios_webkit': False,

# By default, do not checkout the re-client binaries.
'checkout_reclient': False,

# Fetches only the SDK boot images which match at least one of the whitelist
# entries in a comma-separated list.
#
Expand Down Expand Up @@ -447,7 +450,16 @@ deps = {
'dep_type': 'cipd',
'condition': 'host_os == "win"',
},

'src/tools/reclient': {
'packages': [
{
'package': 'infra/rbe/client/linux-amd64',
'version': 'FY971v8hquNEs2x-L-AvVGygtX9sFTRy9aloq85WbqYC',
}
],
'dep_type': 'cipd',
'condition': 'host_os == "linux" and checkout_reclient',
},
'src/chrome/browser/resources/media_router/extension/src':
Var('chromium_git') + '/media_router.git' + '@' + 'd4389c097c61fa8c5aa5eb7c3ba34ee203dd62e3',

Expand Down

0 comments on commit e5e0941

Please sign in to comment.