| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 # These two should be updated to the same revision whenever possible. | 2 # These two should be updated to the same revision whenever possible. |
| 3 "arm_toolchain_version": "6473", | 3 "arm_toolchain_version": "6473", |
| 4 "x86_toolchain_version": "6473", | 4 "x86_toolchain_version": "6473", |
| 5 # Keep them separate from the rest of the list. | 5 # Keep them separate from the rest of the list. |
| 6 | 6 |
| 7 # When possible, keep chrome_rev and chrome_rev_ppapi at the same value. | 7 # When possible, keep chrome_rev and chrome_rev_ppapi at the same value. |
| 8 # chrome_rev should match LKGR so that we can download the binaries, | 8 # chrome_rev should match LKGR so that we can download the binaries, |
| 9 # but sometimes chrome_rev_ppapi needs to be more recent to get the | 9 # but sometimes chrome_rev_ppapi needs to be more recent to get the |
| 10 # latest Pepper changes when LKGR is lagging too far back. | 10 # latest Pepper changes when LKGR is lagging too far back. |
| 11 "chrome_rev": "96903", | 11 "chrome_rev": "97134", |
| 12 "chrome_ppapi_rev": "96903", | 12 "chrome_ppapi_rev": "97134", |
| 13 "chromium_trunk": "http://src.chromium.org/svn/trunk", | 13 "chromium_trunk": "http://src.chromium.org/svn/trunk", |
| 14 "googlecode_url": "http://%s.googlecode.com/svn", | 14 "googlecode_url": "http://%s.googlecode.com/svn", |
| 15 "gtest_rev": "364", | 15 "gtest_rev": "364", |
| 16 "gyp_rev": "906", | 16 "gyp_rev": "906", |
| 17 "lcov_rev": "54822", | 17 "lcov_rev": "54822", |
| 18 "native_client_trunk": "http://src.chromium.org/native_client/trunk", | 18 "native_client_trunk": "http://src.chromium.org/native_client/trunk", |
| 19 "o3d_trunk": "http://o3d.googlecode.com/svn/trunk", | 19 "o3d_trunk": "http://o3d.googlecode.com/svn/trunk", |
| 20 "python_26_rev": "53573", | 20 "python_26_rev": "53573", |
| 21 "tools_rev": "5360", | 21 "tools_rev": "5360", |
| 22 "valgrind_rev": "5674", | 22 "valgrind_rev": "5674", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "action": ["python", "native_client/build/gyp_nacl", | 111 "action": ["python", "native_client/build/gyp_nacl", |
| 112 "native_client/build/all.gyp"], | 112 "native_client/build/all.gyp"], |
| 113 }, | 113 }, |
| 114 { | 114 { |
| 115 "pattern": ".", | 115 "pattern": ".", |
| 116 "action": ["python", "native_client/build/download_toolchains.py", | 116 "action": ["python", "native_client/build/download_toolchains.py", |
| 117 "--x86-version", Var("x86_toolchain_version"), | 117 "--x86-version", Var("x86_toolchain_version"), |
| 118 "--arm-version", Var("arm_toolchain_version")], | 118 "--arm-version", Var("arm_toolchain_version")], |
| 119 }, | 119 }, |
| 120 ] | 120 ] |
| OLD | NEW |