Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: DEPS

Issue 1703533002: [Swarming] Bundle gcmole tools. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Correctly exit wrapper. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .gitignore ('k') | tools/gcmole/download_gcmole_tools.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Note: The buildbots evaluate this file with CWD set to the parent 1 # Note: The buildbots evaluate this file with CWD set to the parent
2 # directory and assume that the root of the checkout is in ./v8/, so 2 # directory and assume that the root of the checkout is in ./v8/, so
3 # all paths in here must match this assumption. 3 # all paths in here must match this assumption.
4 4
5 vars = { 5 vars = {
6 "git_url": "https://chromium.googlesource.com", 6 "git_url": "https://chromium.googlesource.com",
7 } 7 }
8 8
9 deps = { 9 deps = {
10 "v8/build/gyp": 10 "v8/build/gyp":
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 "name": "clang_format_linux", 95 "name": "clang_format_linux",
96 "pattern": ".", 96 "pattern": ".",
97 "action": [ "download_from_google_storage", 97 "action": [ "download_from_google_storage",
98 "--no_resume", 98 "--no_resume",
99 "--platform=linux*", 99 "--platform=linux*",
100 "--no_auth", 100 "--no_auth",
101 "--bucket", "chromium-clang-format", 101 "--bucket", "chromium-clang-format",
102 "-s", "v8/buildtools/linux64/clang-format.sha1", 102 "-s", "v8/buildtools/linux64/clang-format.sha1",
103 ], 103 ],
104 }, 104 },
105 {
106 'name': 'gcmole',
107 'pattern': '.',
108 'action': [
109 'python',
110 'v8/tools/gcmole/download_gcmole_tools.py',
111 ],
112 },
105 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. 113 # Pull luci-go binaries (isolate, swarming) using checked-in hashes.
106 { 114 {
107 'name': 'luci-go_win', 115 'name': 'luci-go_win',
108 'pattern': '.', 116 'pattern': '.',
109 'action': [ 'download_from_google_storage', 117 'action': [ 'download_from_google_storage',
110 '--no_resume', 118 '--no_resume',
111 '--platform=win32', 119 '--platform=win32',
112 '--no_auth', 120 '--no_auth',
113 '--bucket', 'chromium-luci', 121 '--bucket', 'chromium-luci',
114 '-d', 'v8/tools/luci-go/win64', 122 '-d', 'v8/tools/luci-go/win64',
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 'name': 'clang', 208 'name': 'clang',
201 'pattern': '.', 209 'pattern': '.',
202 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], 210 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
203 }, 211 },
204 { 212 {
205 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 213 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
206 "pattern": ".", 214 "pattern": ".",
207 "action": ["python", "v8/build/gyp_v8"], 215 "action": ["python", "v8/build/gyp_v8"],
208 }, 216 },
209 ] 217 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | tools/gcmole/download_gcmole_tools.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698