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" + "@" + "fe00999dfaee449d3465a931677843
4884da4fa7", # from svn revision 2010 | 11 Var("git_url") + "/external/gyp.git" + "@" + "fe00999dfaee449d3465a931677843
4884da4fa7", # from svn revision 2010 |
12 "v8/third_party/icu": | 12 "v8/third_party/icu": |
13 Var("git_url") + "/chromium/deps/icu52.git" + "@" + "866ff696e9022a6000afbab
516fba62cfa306075", # from svn revision 293126 | 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "53ecf0f68b27a004bef552655
3b8e5f6c235b80b", |
14 "v8/buildtools": | 14 "v8/buildtools": |
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "ded32942a1ebfddff0ba123
1898fc4f6c7faacec", | 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "ded32942a1ebfddff0ba123
1898fc4f6c7faacec", |
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" + "@" + "72cba933544c8283c1
73083fbc5f162d00198081", | 21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "72cba933544c8283c1
73083fbc5f162d00198081", |
22 } | 22 } |
23 | 23 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 'name': 'clang', | 88 'name': 'clang', |
89 'pattern': '.', | 89 'pattern': '.', |
90 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 90 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
91 }, | 91 }, |
92 { | 92 { |
93 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 93 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
94 "pattern": ".", | 94 "pattern": ".", |
95 "action": ["python", "v8/build/gyp_v8"], | 95 "action": ["python", "v8/build/gyp_v8"], |
96 }, | 96 }, |
97 ] | 97 ] |
OLD | NEW |