| OLD | NEW |
| 1 # DEPS files look like -*- Python -*- | 1 # DEPS files look like -*- Python -*- |
| 2 | 2 |
| 3 vars = { | 3 vars = { |
| 4 # These two should be updated to the same revision whenever possible. | 4 # These two should be updated to the same revision whenever possible. |
| 5 "x86_toolchain_version": "7258", | 5 "x86_toolchain_version": "7258", |
| 6 "pnacl_toolchain_version": "7258", | 6 "pnacl_toolchain_version": "7258", |
| 7 | 7 |
| 8 # ARM trusted toolchain version cannot be changed for now. | 8 # ARM trusted toolchain version cannot be changed for now. |
| 9 "arm_trusted_toolchain_version": "6999", | 9 "arm_trusted_toolchain_version": "6999", |
| 10 | 10 |
| 11 # When possible, keep chrome_rev and chromebinaries_rev at the same | 11 # When possible, keep chrome_rev and chromebinaries_rev at the same |
| 12 # value. chromebinaries_rev should match LKGR so that we can download | 12 # value. chromebinaries_rev should match LKGR so that we can download |
| 13 # the binaries, but sometimes chrome_rev needs to be more recent to get | 13 # the binaries, but sometimes chrome_rev needs to be more recent to get |
| 14 # source changes when LKGR is lagging too far back. | 14 # source changes when LKGR is lagging too far back. |
| 15 "chromebinaries_rev": "110106", | 15 "chromebinaries_rev": "111186", |
| 16 "chrome_rev": "110106", | 16 "chrome_rev": "111186", |
| 17 # NOTE! These four should match their counterparts in chromium/src/DEPS. | 17 # NOTE! These four should match their counterparts in chromium/src/DEPS. |
| 18 # Be sure to update them when updating chrome_rev, above. | 18 # Be sure to update them when updating chrome_rev, above. |
| 19 "gtest_rev": "560", | 19 "gtest_rev": "560", |
| 20 "gyp_rev": "1088", | 20 "gyp_rev": "1088", |
| 21 "jsoncpp_revision": "246", | 21 "jsoncpp_revision": "246", |
| 22 "lss_rev": "9", | 22 "lss_rev": "9", |
| 23 | 23 |
| 24 "lcov_rev": "54822", | 24 "lcov_rev": "54822", |
| 25 "python_26_rev": "53573", | 25 "python_26_rev": "53573", |
| 26 "tools_rev": "7139", | 26 "tools_rev": "7139", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "action": ["python", "native_client/build/download_toolchains.py", | 108 "action": ["python", "native_client/build/download_toolchains.py", |
| 109 "--x86-version", Var("x86_toolchain_version"), | 109 "--x86-version", Var("x86_toolchain_version"), |
| 110 "--arm-trusted-version", Var("arm_trusted_toolchain_version"), | 110 "--arm-trusted-version", Var("arm_trusted_toolchain_version"), |
| 111 "--pnacl-version", Var("pnacl_toolchain_version")], | 111 "--pnacl-version", Var("pnacl_toolchain_version")], |
| 112 }, | 112 }, |
| 113 { | 113 { |
| 114 "pattern": ".", | 114 "pattern": ".", |
| 115 "action": ["python", "native_client/build/gyp_nacl"], | 115 "action": ["python", "native_client/build/gyp_nacl"], |
| 116 }, | 116 }, |
| 117 ] | 117 ] |
| OLD | NEW |