| OLD | NEW |
| 1 # DEPS files look like -*- Python -*- | 1 # DEPS files look like -*- Python -*- |
| 2 | 2 |
| 3 vars = { | 3 vars = { |
| 4 "chrome_rev": "275800", | 4 "chrome_rev": "275800", |
| 5 # NOTE! These four should match their counterparts in chromium/src/DEPS. | 5 # NOTE! These four should match their counterparts in chromium/src/DEPS. |
| 6 # Be sure to update them when updating chrome_rev, above. | 6 # Be sure to update them when updating chrome_rev, above. |
| 7 # (This is not essential for Breakpad, because we do not use its code | 7 # (This is not essential for Breakpad, because we do not use its code |
| 8 # in the build that goes into Chromium. But might as well update it too.) | 8 # in the build that goes into Chromium. But might as well update it too.) |
| 9 "gtest_rev": "643", | 9 "gtest_rev": "643", |
| 10 "gyp_rev": "1927", | 10 "gyp_rev": "1927", |
| 11 "lss_rev": "26", | 11 "lss_rev": "26", |
| 12 "breakpad_rev": "1338", | 12 "breakpad_rev": "1338", |
| 13 | 13 |
| 14 "lcov_rev": "149720", | 14 "lcov_rev": "149720", |
| 15 "tools_rev": "13800", | 15 "tools_rev": "13800", |
| 16 | 16 |
| 17 "validator_snapshots_rev": "14012", | 17 "validator_snapshots_rev": "14018", |
| 18 | 18 |
| 19 # These are URL prefixes rather than revision numbers, so keep them separate. | 19 # These are URL prefixes rather than revision numbers, so keep them separate. |
| 20 "chromium_trunk": "http://src.chromium.org/svn/trunk", | 20 "chromium_trunk": "http://src.chromium.org/svn/trunk", |
| 21 "googlecode_url": "http://%s.googlecode.com/svn", | 21 "googlecode_url": "http://%s.googlecode.com/svn", |
| 22 "native_client_trunk": "http://src.chromium.org/native_client/trunk", | 22 "native_client_trunk": "http://src.chromium.org/native_client/trunk", |
| 23 "chromium_git": "https://chromium.googlesource.com", | 23 "chromium_git": "https://chromium.googlesource.com", |
| 24 | 24 |
| 25 # Three lines of non-changing comments so that | 25 # Three lines of non-changing comments so that |
| 26 # the commit queue can handle CLs rolling build tools | 26 # the commit queue can handle CLs rolling build tools |
| 27 # and whatever else without interference from each other. | 27 # and whatever else without interference from each other. |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 { | 154 { |
| 155 "pattern": ".", | 155 "pattern": ".", |
| 156 "action": ["python", "native_client/build/gyp_nacl"], | 156 "action": ["python", "native_client/build/gyp_nacl"], |
| 157 }, | 157 }, |
| 158 ] | 158 ] |
| 159 | 159 |
| 160 include_rules = [ | 160 include_rules = [ |
| 161 "+native_client/src/include", | 161 "+native_client/src/include", |
| 162 "+gtest", | 162 "+gtest", |
| 163 ] | 163 ] |
| OLD | NEW |