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": "5179", | 3 "arm_toolchain_version": "5179", |
4 "x86_toolchain_version": "5188", | 4 "x86_toolchain_version": "5188", |
5 | 5 |
6 "chrome_rev": "84408", | 6 "chrome_rev": "84408", |
7 "chromium_trunk": "http://src.chromium.org/svn/trunk", | 7 "chromium_trunk": "http://src.chromium.org/svn/trunk", |
8 "gtest_rev": "364", | 8 "gtest_rev": "364", |
9 "gyp_rev": "906", | 9 "gyp_rev": "906", |
10 "lcov_rev": "54822", | 10 "lcov_rev": "54822", |
11 "native_client_trunk": "http://src.chromium.org/native_client/trunk", | 11 "native_client_trunk": "http://src.chromium.org/native_client/trunk", |
12 "o3d_trunk": "http://o3d.googlecode.com/svn/trunk", | 12 "o3d_trunk": "http://o3d.googlecode.com/svn/trunk", |
13 "python_26_rev": "53573", | 13 "python_26_rev": "53573", |
14 "tools_rev": "5215", | 14 "tools_rev": "5218", |
15 "wix_rev": "153", | 15 "wix_rev": "153", |
16 } | 16 } |
17 | 17 |
18 deps = { | 18 deps = { |
19 "base": | 19 "base": |
20 Var("chromium_trunk") + "/src/base@" + Var("chrome_rev"), | 20 Var("chromium_trunk") + "/src/base@" + Var("chrome_rev"), |
21 "build": | 21 "build": |
22 Var("chromium_trunk") + "/src/build@" + Var("chrome_rev"), | 22 Var("chromium_trunk") + "/src/build@" + Var("chrome_rev"), |
23 "chrome/test/pyautolib": | 23 "chrome/test/pyautolib": |
24 Var("chromium_trunk") + "/src/chrome/test/pyautolib@" + Var("chrome_rev"), | 24 Var("chromium_trunk") + "/src/chrome/test/pyautolib@" + Var("chrome_rev"), |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 "action": ["python", "native_client/build/gyp_nacl", | 97 "action": ["python", "native_client/build/gyp_nacl", |
98 "native_client/build/all.gyp"], | 98 "native_client/build/all.gyp"], |
99 }, | 99 }, |
100 { | 100 { |
101 "pattern": ".", | 101 "pattern": ".", |
102 "action": ["python", "native_client/build/download_toolchains.py", | 102 "action": ["python", "native_client/build/download_toolchains.py", |
103 "--x86-version", Var("x86_toolchain_version"), | 103 "--x86-version", Var("x86_toolchain_version"), |
104 "--arm-version", Var("arm_toolchain_version")], | 104 "--arm-version", Var("arm_toolchain_version")], |
105 }, | 105 }, |
106 ] | 106 ] |
OLD | NEW |