| 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: |
| 11 # chrome_rev: 275800 | 11 # chrome_rev: 275800 |
| 12 "valgrind_rev": "59886873b4b8258a8e0f098c23e1958e0d0c0a26", # from svn revisio
n 231553 | 12 "valgrind_rev": "59886873b4b8258a8e0f098c23e1958e0d0c0a26", # from svn revisio
n 231553 |
| 13 "tools_valgrind_rev": "4989a1b19c3a33c828e385d3a07e83e202e1e651", # from svn r
evision 275521 | 13 "tools_valgrind_rev": "4989a1b19c3a33c828e385d3a07e83e202e1e651", # from svn r
evision 275521 |
| 14 "clang_rev": "7aa71664f527268776ce5b5bceae01a4bc6a1666", # from svn revision 2
74816 | 14 "clang_rev": "dc89dfdeeeb610545184911529aed5d3e4e8558f", # from cr commit posi
tion 307492 |
| 15 | 15 |
| 16 # NOTE! These five should be kept up to date with their counterparts in | 16 # NOTE! These five should be kept up to date with their counterparts in |
| 17 # chromium/src/DEPS. | 17 # chromium/src/DEPS. |
| 18 # Be sure to update them when updating the chromium slice revisions above. | 18 # Be sure to update them when updating the chromium slice revisions above. |
| 19 # (This is not essential for Breakpad, because we do not use its code | 19 # (This is not essential for Breakpad, because we do not use its code |
| 20 # in the build that goes into Chromium. But we might as well update it too.) | 20 # in the build that goes into Chromium. But we might as well update it too.) |
| 21 # You should now use the roll-dep script in depot_tools to do this update. | 21 # You should now use the roll-dep script in depot_tools to do this update. |
| 22 "gtest_rev": "74de57c951aedebc5dfe26a27604353432392b98", # from svn revision 6
43 | 22 "gtest_rev": "74de57c951aedebc5dfe26a27604353432392b98", # from svn revision 6
43 |
| 23 "gyp_rev": "adb7d24b9fc166f01ab2da50478556b518a9218f", # from svn revision 202
7 | 23 "gyp_rev": "adb7d24b9fc166f01ab2da50478556b518a9218f", # from svn revision 202
7 |
| 24 "lss_rev": "2f724fced658cd6182096c615efdf3767b7c57fe", # from svn revision 26 | 24 "lss_rev": "2f724fced658cd6182096c615efdf3767b7c57fe", # from svn revision 26 |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 { | 180 { |
| 181 "pattern": ".", | 181 "pattern": ".", |
| 182 "action": ["python", "native_client/build/gyp_nacl"], | 182 "action": ["python", "native_client/build/gyp_nacl"], |
| 183 }, | 183 }, |
| 184 ] | 184 ] |
| 185 | 185 |
| 186 include_rules = [ | 186 include_rules = [ |
| 187 "+native_client/src/include", | 187 "+native_client/src/include", |
| 188 "+gtest", | 188 "+gtest", |
| 189 ] | 189 ] |
| OLD | NEW |