| OLD | NEW |
| 1 # Note: The buildbots evaluate this file with CWD set to the parent | 1 # Note: The buildbots evaluate this file with CWD set to the parent |
| 2 # directory and assume that the root of the checkout is in ./v8/, so | 2 # directory and assume that the root of the checkout is in ./v8/, so |
| 3 # all paths in here must match this assumption. | 3 # all paths in here must match this assumption. |
| 4 | 4 |
| 5 vars = { | 5 vars = { |
| 6 "git_url": "https://chromium.googlesource.com", | 6 "git_url": "https://chromium.googlesource.com", |
| 7 } | 7 } |
| 8 | 8 |
| 9 deps = { | 9 deps = { |
| 10 "v8/build/gyp": | 10 "v8/build/gyp": |
| 11 Var("git_url") + "/external/gyp.git" + "@" + "82b08049cc0b1f9e0bdcc0702ac6b5
23360f635f", | 11 Var("git_url") + "/external/gyp.git" + "@" + "82b08049cc0b1f9e0bdcc0702ac6b5
23360f635f", |
| 12 "v8/third_party/icu": | 12 "v8/third_party/icu": |
| 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "51c1a4ce5f362676aa1f1cfdb
5b7e52edabfa5aa", | 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "51c1a4ce5f362676aa1f1cfdb
5b7e52edabfa5aa", |
| 14 "v8/buildtools": | 14 "v8/buildtools": |
| 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "23a4e2f545c7b6340d7e5a2
b74801941b0a86535", | 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "451dcd05a5b34936f5be67b
2472cd63aaa508401", |
| 16 "v8/testing/gtest": | 16 "v8/testing/gtest": |
| 17 Var("git_url") + "/external/googletest.git" + "@" + "8245545b6dc9c4703e6496d
1efd19e975ad2b038", # from svn revision 700 | 17 Var("git_url") + "/external/googletest.git" + "@" + "8245545b6dc9c4703e6496d
1efd19e975ad2b038", # from svn revision 700 |
| 18 "v8/testing/gmock": | 18 "v8/testing/gmock": |
| 19 Var("git_url") + "/external/googlemock.git" + "@" + "29763965ab52f2456529997
6b936d1265cb6a271", # from svn revision 501 | 19 Var("git_url") + "/external/googlemock.git" + "@" + "29763965ab52f2456529997
6b936d1265cb6a271", # from svn revision 501 |
| 20 "v8/tools/clang": | 20 "v8/tools/clang": |
| 21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "24bed8c99d57ebfad0
5890c21f03f31af39dc6d4", | 21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "24bed8c99d57ebfad0
5890c21f03f31af39dc6d4", |
| 22 } | 22 } |
| 23 | 23 |
| 24 deps_os = { | 24 deps_os = { |
| 25 "android": { | 25 "android": { |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 'name': 'clang', | 86 'name': 'clang', |
| 87 'pattern': '.', | 87 'pattern': '.', |
| 88 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 88 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
| 89 }, | 89 }, |
| 90 { | 90 { |
| 91 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 91 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 92 "pattern": ".", | 92 "pattern": ".", |
| 93 "action": ["python", "v8/build/gyp_v8"], | 93 "action": ["python", "v8/build/gyp_v8"], |
| 94 }, | 94 }, |
| 95 ] | 95 ] |
| OLD | NEW |