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" + "@" + "d174d75bf69c682cb62af9187879e0
1513b35e52", | 11 Var("git_url") + "/external/gyp.git" + "@" + "d174d75bf69c682cb62af9187879e0
1513b35e52", |
12 "v8/third_party/icu": | 12 "v8/third_party/icu": |
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "d319ad9e25e8045f051dcd30b
d5835f99936af6c", | 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "7c81740601355556e630da515
b74d889ba2f8d08", |
14 "v8/buildtools": | 14 "v8/buildtools": |
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "3b302fef93f7cc58d9b8168
466905237484b2772", | 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "3b302fef93f7cc58d9b8168
466905237484b2772", |
16 "v8/testing/gtest": | 16 "v8/testing/gtest": |
17 Var("git_url") + "/external/googletest.git" + "@" + "be1868139ffe0ccd0e8e3b3
7292b84c821d9c8ad", | 17 Var("git_url") + "/external/googletest.git" + "@" + "be1868139ffe0ccd0e8e3b3
7292b84c821d9c8ad", |
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" + "@" + "14dcc71cf53d4d97d0
e6e8745089ff81de7b8a94", | 21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "14dcc71cf53d4d97d0
e6e8745089ff81de7b8a94", |
22 } | 22 } |
23 | 23 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 'name': 'clang', | 108 'name': 'clang', |
109 'pattern': '.', | 109 'pattern': '.', |
110 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 110 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
111 }, | 111 }, |
112 { | 112 { |
113 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 113 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
114 "pattern": ".", | 114 "pattern": ".", |
115 "action": ["python", "v8/build/gyp_v8"], | 115 "action": ["python", "v8/build/gyp_v8"], |
116 }, | 116 }, |
117 ] | 117 ] |
OLD | NEW |