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 "chromium_git": "https://chromium.googlesource.com", |
| 7 |
6 "chromium_trunk": "https://src.chromium.org/svn/trunk", | 8 "chromium_trunk": "https://src.chromium.org/svn/trunk", |
7 | 9 |
8 "buildtools_revision": "fb782d4369d5ae04f17a2fceef7de5a63e50f07b", | 10 "buildtools_revision": "fb782d4369d5ae04f17a2fceef7de5a63e50f07b", |
9 } | 11 } |
10 | 12 |
11 deps = { | 13 deps = { |
12 # Remember to keep the revision in sync with the Makefile. | 14 # Remember to keep the revision in sync with the Makefile. |
13 "v8/build/gyp": | 15 "v8/build/gyp": |
14 "http://gyp.googlecode.com/svn/trunk@1831", | 16 "http://gyp.googlecode.com/svn/trunk@1831", |
15 | 17 |
16 "v8/third_party/icu": | 18 "v8/third_party/icu": |
17 Var("chromium_trunk") + "/deps/third_party/icu52@277999", | 19 Var("chromium_trunk") + "/deps/third_party/icu52@277999", |
18 | 20 |
19 "v8/buildtools": | 21 "v8/buildtools": |
20 "https://chromium.googlesource.com/chromium/buildtools.git@" + | 22 "https://chromium.googlesource.com/chromium/buildtools.git@" + |
21 Var("buildtools_revision"), | 23 Var("buildtools_revision"), |
22 | 24 |
23 "v8/testing/gtest": | 25 "v8/testing/gtest": |
24 "http://googletest.googlecode.com/svn/trunk@692", | 26 "http://googletest.googlecode.com/svn/trunk@692", |
25 | 27 |
26 "v8/testing/gmock": | 28 "v8/testing/gmock": |
27 "http://googlemock.googlecode.com/svn/trunk@485", | 29 "http://googlemock.googlecode.com/svn/trunk@485", |
28 } | 30 } |
29 | 31 |
30 deps_os = { | 32 deps_os = { |
| 33 "android": { |
| 34 "v8/third_party/android_tools": |
| 35 Var("chromium_git") + "/android_tools.git" + "@" + |
| 36 "31869996507de16812bb53a3d0aaa15cd6194c16", |
| 37 }, |
31 "win": { | 38 "win": { |
32 "v8/third_party/cygwin": | 39 "v8/third_party/cygwin": |
33 Var("chromium_trunk") + "/deps/third_party/cygwin@66844", | 40 Var("chromium_trunk") + "/deps/third_party/cygwin@66844", |
34 | 41 |
35 "v8/third_party/python_26": | 42 "v8/third_party/python_26": |
36 Var("chromium_trunk") + "/tools/third_party/python_26@89111", | 43 Var("chromium_trunk") + "/tools/third_party/python_26@89111", |
37 } | 44 } |
38 } | 45 } |
39 | 46 |
40 include_rules = [ | 47 include_rules = [ |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 "--bucket", "chromium-clang-format", | 91 "--bucket", "chromium-clang-format", |
85 "-s", "v8/buildtools/linux64/clang-format.sha1", | 92 "-s", "v8/buildtools/linux64/clang-format.sha1", |
86 ], | 93 ], |
87 }, | 94 }, |
88 { | 95 { |
89 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 96 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
90 "pattern": ".", | 97 "pattern": ".", |
91 "action": ["python", "v8/build/gyp_v8"], | 98 "action": ["python", "v8/build/gyp_v8"], |
92 }, | 99 }, |
93 ] | 100 ] |
OLD | NEW |