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

Side by Side Diff: DEPS

Issue 2327033002: [gn] Switch off gyp in runhooks by default (Closed)
Patch Set: Fix Created 4 years, 3 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 | « no previous file | gypfiles/gyp_v8 » ('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": 10 "v8/build":
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 { 272 {
273 # Pull clang if needed or requested via GYP_DEFINES. 273 # Pull clang if needed or requested via GYP_DEFINES.
274 # Note: On Win, this should run after win_toolchain, as it may use it. 274 # Note: On Win, this should run after win_toolchain, as it may use it.
275 'name': 'clang', 275 'name': 'clang',
276 'pattern': '.', 276 'pattern': '.',
277 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], 277 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
278 }, 278 },
279 { 279 {
280 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 280 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
281 "pattern": ".", 281 "pattern": ".",
282 "action": ["python", "v8/gypfiles/gyp_v8"], 282 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"],
283 }, 283 },
284 ] 284 ]
OLDNEW
« no previous file with comments | « no previous file | gypfiles/gyp_v8 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698