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 # Remember to keep the revision in sync with the Makefile. | 10 # Remember to keep the revision in sync with the Makefile. |
11 "v8/build/gyp": | 11 "v8/build/gyp": |
12 Var("git_url") + "/external/gyp.git@a3e2a5caf24a1e0a45401e09ad131210bf16b852
", | 12 Var("git_url") + "/external/gyp.git@a3e2a5caf24a1e0a45401e09ad131210bf16b852
", |
13 "v8/third_party/icu": | 13 "v8/third_party/icu": |
14 Var("git_url") + "/chromium/deps/icu52.git@26d8859357ac0bfb86b939bf21c087b8e
ae22494", | 14 Var("git_url") + "/chromium/deps/icu52.git@26d8859357ac0bfb86b939bf21c087b8e
ae22494", |
15 "v8/buildtools": | 15 "v8/buildtools": |
16 Var("git_url") + "/chromium/buildtools.git@fb782d4369d5ae04f17a2fceef7de5a63
e50f07b", | 16 Var("git_url") + "/chromium/buildtools.git@fb782d4369d5ae04f17a2fceef7de5a63
e50f07b", |
17 "v8/testing/gtest": | 17 "v8/testing/gtest": |
18 Var("git_url") + "/external/googletest.git@4650552ff637bb44ecf7784060091cbed
3252211", | 18 Var("git_url") + "/external/googletest.git@4650552ff637bb44ecf7784060091cbed
3252211", |
19 "v8/testing/gmock": | 19 "v8/testing/gmock": |
20 Var("git_url") + "/external/googlemock.git@896ba0e03f520fb9b6ed582bde2bd0084
7e3c3f2", | 20 Var("git_url") + "/external/googlemock.git@896ba0e03f520fb9b6ed582bde2bd0084
7e3c3f2", |
21 "v8/tools/clang": | 21 "v8/tools/clang": |
22 Var("git_url") + "/chromium/src/tools/clang.git@327e26ee7f6ae6f86fb335113b46
cb86ed3cb0dc", | 22 Var("git_url") + "/chromium/src/tools/clang.git@72cba933544c8283c173083fbc5f
162d00198081", |
23 } | 23 } |
24 | 24 |
25 deps_os = { | 25 deps_os = { |
26 "android": { | 26 "android": { |
27 "v8/third_party/android_tools": | 27 "v8/third_party/android_tools": |
28 Var("git_url") + "/android_tools.git@31869996507de16812bb53a3d0aaa15cd6194
c16", | 28 Var("git_url") + "/android_tools.git@31869996507de16812bb53a3d0aaa15cd6194
c16", |
29 }, | 29 }, |
30 "win": { | 30 "win": { |
31 "v8/third_party/cygwin": | 31 "v8/third_party/cygwin": |
32 Var("git_url") + "/chromium/deps/cygwin.git@06a117a90c15174436bfa20ceebbfd
f43b7eb820", | 32 Var("git_url") + "/chromium/deps/cygwin.git@06a117a90c15174436bfa20ceebbfd
f43b7eb820", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 'name': 'clang', | 89 'name': 'clang', |
90 'pattern': '.', | 90 'pattern': '.', |
91 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 91 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
92 }, | 92 }, |
93 { | 93 { |
94 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 94 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
95 "pattern": ".", | 95 "pattern": ".", |
96 "action": ["python", "v8/build/gyp_v8"], | 96 "action": ["python", "v8/build/gyp_v8"], |
97 }, | 97 }, |
98 ] | 98 ] |
OLD | NEW |