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. | |
11 "v8/build/gyp": | 10 "v8/build/gyp": |
12 Var("git_url") + "/external/gyp.git@a3e2a5caf24a1e0a45401e09ad131210bf16b852
", | 11 Var("git_url") + "/external/gyp.git" + "@" + "fe00999dfaee449d3465a931677843
4884da4fa7", # from svn revision 2010 |
13 "v8/third_party/icu": | 12 "v8/third_party/icu": |
14 Var("git_url") + "/chromium/deps/icu52.git@26d8859357ac0bfb86b939bf21c087b8e
ae22494", | 13 Var("git_url") + "/chromium/deps/icu52.git" + "@" + "866ff696e9022a6000afbab
516fba62cfa306075", # from svn revision 293126 |
15 "v8/buildtools": | 14 "v8/buildtools": |
16 Var("git_url") + "/chromium/buildtools.git@fb782d4369d5ae04f17a2fceef7de5a63
e50f07b", | 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "ded32942a1ebfddff0ba123
1898fc4f6c7faacec", |
17 "v8/testing/gtest": | 16 "v8/testing/gtest": |
18 Var("git_url") + "/external/googletest.git@4650552ff637bb44ecf7784060091cbed
3252211", | 17 Var("git_url") + "/external/googletest.git" + "@" + "8245545b6dc9c4703e6496d
1efd19e975ad2b038", # from svn revision 700 |
19 "v8/testing/gmock": | 18 "v8/testing/gmock": |
20 Var("git_url") + "/external/googlemock.git@896ba0e03f520fb9b6ed582bde2bd0084
7e3c3f2", | 19 Var("git_url") + "/external/googlemock.git" + "@" + "29763965ab52f2456529997
6b936d1265cb6a271", # from svn revision 501 |
21 "v8/tools/clang": | 20 "v8/tools/clang": |
22 Var("git_url") + "/chromium/src/tools/clang.git@72cba933544c8283c173083fbc5f
162d00198081", | 21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "72cba933544c8283c1
73083fbc5f162d00198081", |
23 } | 22 } |
24 | 23 |
25 deps_os = { | 24 deps_os = { |
26 "android": { | 25 "android": { |
27 "v8/third_party/android_tools": | 26 "v8/third_party/android_tools": |
28 Var("git_url") + "/android_tools.git@31869996507de16812bb53a3d0aaa15cd6194
c16", | 27 Var("git_url") + "/android_tools.git" + "@" + "4f723e2a5fa5b7b8a198072ac19
b92344be2b271", |
29 }, | 28 }, |
30 "win": { | 29 "win": { |
31 "v8/third_party/cygwin": | 30 "v8/third_party/cygwin": |
32 Var("git_url") + "/chromium/deps/cygwin.git@06a117a90c15174436bfa20ceebbfd
f43b7eb820", | 31 Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a
10ff1007a97c0b7de6df", |
33 "v8/third_party/python_26": | 32 "v8/third_party/python_26": |
34 Var("git_url") + "/chromium/deps/python_26.git@67d19f904470effe3122d27101c
c5a8195abd157", | 33 Var("git_url") + "/chromium/deps/python_26.git" + "@" + "67d19f904470effe3
122d27101cc5a8195abd157", |
35 } | 34 } |
36 } | 35 } |
37 | 36 |
38 include_rules = [ | 37 include_rules = [ |
39 # Everybody can use some things. | 38 # Everybody can use some things. |
40 "+include", | 39 "+include", |
41 "+unicode", | 40 "+unicode", |
42 "+third_party/fdlibm", | 41 "+third_party/fdlibm", |
43 ] | 42 ] |
44 | 43 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 'name': 'clang', | 88 'name': 'clang', |
90 'pattern': '.', | 89 'pattern': '.', |
91 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 90 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
92 }, | 91 }, |
93 { | 92 { |
94 # 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. |
95 "pattern": ".", | 94 "pattern": ".", |
96 "action": ["python", "v8/build/gyp_v8"], | 95 "action": ["python", "v8/build/gyp_v8"], |
97 }, | 96 }, |
98 ] | 97 ] |
OLD | NEW |