OLD | NEW |
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 Loading... |
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 ] |
OLD | NEW |