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

Side by Side Diff: DEPS

Issue 1924743004: Remove GYP build from bots and 'gclient runhooks' (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: punt gyp build from pnacl script Created 4 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/gyp_nacl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # DEPS files look like -*- Python -*- 1 # DEPS files look like -*- Python -*-
2 2
3 vars = { 3 vars = {
4 # These revisions are slices of the chromium repository. 4 # These revisions are slices of the chromium repository.
5 # Because they come from separate sub-slices, their hashes do not match at 5 # Because they come from separate sub-slices, their hashes do not match at
6 # equivalent revisions. When updating them, use the roll-dep script 6 # equivalent revisions. When updating them, use the roll-dep script
7 # to move them to equivalent revisions. Additionally, because not all 7 # to move them to equivalent revisions. Additionally, because not all
8 # directories contain commits at each revision, you will need to select 8 # directories contain commits at each revision, you will need to select
9 # revisions at latest revision up to a high watermark from each slice. 9 # revisions at latest revision up to a high watermark from each slice.
10 # Document the high watermark here: 10 # Document the high watermark here:
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 ], 250 ],
251 }, 251 },
252 # Cleanup any stale package_version files. 252 # Cleanup any stale package_version files.
253 { 253 {
254 "pattern": ".", 254 "pattern": ".",
255 "action": ["python", 255 "action": ["python",
256 "native_client/build/package_version/package_version.py", 256 "native_client/build/package_version/package_version.py",
257 "cleanup", 257 "cleanup",
258 ], 258 ],
259 }, 259 },
260
261 # Run GYP, do this last to make sure all the tools are present first.
262 {
263 "pattern": ".",
264 "action": ["python", "native_client/build/gyp_nacl"],
265 },
266 ] 260 ]
267 261
268 include_rules = [ 262 include_rules = [
269 "+native_client/src/include", 263 "+native_client/src/include",
270 "+gtest", 264 "+gtest",
271 ] 265 ]
OLDNEW
« no previous file with comments | « no previous file | build/gyp_nacl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698