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": | |
22 Var("git_url") + "/chromium/src/tools/clang.git@327e26ee7f6ae6f86fb335113b46 cb86ed3cb0dc", | |
Michael Achenbach
2014/11/26 15:08:34
Be aware of make dependencies...
jochen (gone - plz use gerrit)
2014/11/27 10:02:39
everybody should be using gclient sync, no?
Michael Achenbach
2014/11/27 10:13:05
I can't speak for other people. The best way to en
| |
21 } | 23 } |
22 | 24 |
23 deps_os = { | 25 deps_os = { |
24 "android": { | 26 "android": { |
25 "v8/third_party/android_tools": | 27 "v8/third_party/android_tools": |
26 Var("git_url") + "/android_tools.git@31869996507de16812bb53a3d0aaa15cd6194 c16", | 28 Var("git_url") + "/android_tools.git@31869996507de16812bb53a3d0aaa15cd6194 c16", |
27 }, | 29 }, |
28 "win": { | 30 "win": { |
29 "v8/third_party/cygwin": | 31 "v8/third_party/cygwin": |
30 Var("git_url") + "/chromium/deps/cygwin.git@06a117a90c15174436bfa20ceebbfd f43b7eb820", | 32 Var("git_url") + "/chromium/deps/cygwin.git@06a117a90c15174436bfa20ceebbfd f43b7eb820", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
75 "pattern": ".", | 77 "pattern": ".", |
76 "action": [ "download_from_google_storage", | 78 "action": [ "download_from_google_storage", |
77 "--no_resume", | 79 "--no_resume", |
78 "--platform=linux*", | 80 "--platform=linux*", |
79 "--no_auth", | 81 "--no_auth", |
80 "--bucket", "chromium-clang-format", | 82 "--bucket", "chromium-clang-format", |
81 "-s", "v8/buildtools/linux64/clang-format.sha1", | 83 "-s", "v8/buildtools/linux64/clang-format.sha1", |
82 ], | 84 ], |
83 }, | 85 }, |
84 { | 86 { |
87 # Pull clang if needed or requested via GYP_DEFINES. | |
Michael Achenbach
2014/11/26 15:08:34
I don't understand how this is dependent on GYP_DE
jochen (gone - plz use gerrit)
2014/11/27 10:02:39
it internally checks the gyp defines
| |
88 # Note: On Win, this should run after win_toolchain, as it may use it. | |
89 'name': 'clang', | |
90 'pattern': '.', | |
91 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | |
92 }, | |
93 { | |
85 # 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. |
86 "pattern": ".", | 95 "pattern": ".", |
87 "action": ["python", "v8/build/gyp_v8"], | 96 "action": ["python", "v8/build/gyp_v8"], |
88 }, | 97 }, |
89 ] | 98 ] |
OLD | NEW |