Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # DEPS files look like -*- Python -*- | 1 # DEPS files look like -*- Python -*- |
| 2 | 2 |
| 3 vars = { | 3 vars = { |
| 4 # Each of these toolchain revision numbers should only be updated | 4 # Each of these toolchain revision numbers should only be updated |
| 5 # whenever there has been a real change to the corresponding | 5 # whenever there has been a real change to the corresponding |
| 6 # toolchain, so that new toolchain tarballs are not downloaded | 6 # toolchain, so that new toolchain tarballs are not downloaded |
| 7 # unnecessarily. There is no need to keep these numbers in sync | 7 # unnecessarily. There is no need to keep these numbers in sync |
| 8 # with each other. | 8 # with each other. |
| 9 "x86_toolchain_version": "8953", | 9 "x86_toolchain_version": "8953", |
| 10 "pnacl_toolchain_version": "8995", | 10 "pnacl_toolchain_version": "8995", |
| 11 | 11 |
| 12 # ARM trusted toolchain version cannot be changed for now. | 12 # ARM trusted toolchain version cannot be changed for now. |
| 13 "arm_trusted_toolchain_version": "7004", | 13 "arm_trusted_toolchain_version": "7004", |
| 14 | 14 |
| 15 # When possible, keep chrome_rev and chromebinaries_rev at the same | 15 # When possible, keep chrome_rev and chromebinaries_rev at the same |
| 16 # value. chromebinaries_rev should match LKGR so that we can download | 16 # value. chromebinaries_rev should match LKGR so that we can download |
| 17 # the binaries, but sometimes chrome_rev needs to be more recent to get | 17 # the binaries, but sometimes chrome_rev needs to be more recent to get |
| 18 # source changes when LKGR is lagging too far back. | 18 # source changes when LKGR is lagging too far back. |
| 19 "chromebinaries_rev": "142600", | 19 "chromebinaries_rev": "142600", |
| 20 "chrome_rev": "142600", | 20 "chrome_rev": "142600", |
| 21 # NOTE! These four should match their counterparts in chromium/src/DEPS. | 21 # NOTE! These four should match their counterparts in chromium/src/DEPS. |
| 22 # Be sure to update them when updating chrome_rev, above. | 22 # Be sure to update them when updating chrome_rev, above. |
| 23 "gtest_rev": "613", | 23 "gtest_rev": "613", |
| 24 "gyp_rev": "1415", | 24 "gyp_rev": "1415", |
| 25 "jsoncpp_revision": "248", | 25 "jsoncpp_revision": "248", |
| 26 "lss_rev": "11", | 26 "lss_rev": "11", |
| 27 | 27 |
| 28 "lcov_rev": "54822", | 28 "lcov_rev": "54822", |
| 29 "python_26_rev": "53573", | 29 "python_26_rev": "53573", |
| 30 "tools_rev": "8673", | 30 "tools_rev": "9002", |
|
Mark Seaborn
2012/06/21 18:15:58
SVN revision 9002 does not exist currently. You a
| |
| 31 | 31 |
| 32 # These are URL prefixes rather than revision numbers, so keep them separate. | 32 # These are URL prefixes rather than revision numbers, so keep them separate. |
| 33 "chromium_trunk": "http://src.chromium.org/svn/trunk", | 33 "chromium_trunk": "http://src.chromium.org/svn/trunk", |
| 34 "googlecode_url": "http://%s.googlecode.com/svn", | 34 "googlecode_url": "http://%s.googlecode.com/svn", |
| 35 "native_client_trunk": "http://src.chromium.org/native_client/trunk", | 35 "native_client_trunk": "http://src.chromium.org/native_client/trunk", |
| 36 "o3d_trunk": "http://o3d.googlecode.com/svn/trunk", | 36 "o3d_trunk": "http://o3d.googlecode.com/svn/trunk", |
| 37 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 37 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
| 38 } | 38 } |
| 39 | 39 |
| 40 deps = { | 40 deps = { |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 130 "--x86-version", Var("x86_toolchain_version"), | 130 "--x86-version", Var("x86_toolchain_version"), |
| 131 "--arm-trusted-version", Var("arm_trusted_toolchain_version"), | 131 "--arm-trusted-version", Var("arm_trusted_toolchain_version"), |
| 132 "--pnacl-version", Var("pnacl_toolchain_version"), | 132 "--pnacl-version", Var("pnacl_toolchain_version"), |
| 133 "--keep"], | 133 "--keep"], |
| 134 }, | 134 }, |
| 135 { | 135 { |
| 136 "pattern": ".", | 136 "pattern": ".", |
| 137 "action": ["python", "native_client/build/gyp_nacl"], | 137 "action": ["python", "native_client/build/gyp_nacl"], |
| 138 }, | 138 }, |
| 139 ] | 139 ] |
| OLD | NEW |