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": | 10 "v8/build": |
(...skipping 19 matching lines...) Expand all Loading... | |
30 "v8/test/simdjs/data": Var("git_url") + "/external/github.com/tc39/ecmascript_ simd.git" + "@" + "baf493985cb9ea7cdbd0d68704860a8156de9556", | 30 "v8/test/simdjs/data": Var("git_url") + "/external/github.com/tc39/ecmascript_ simd.git" + "@" + "baf493985cb9ea7cdbd0d68704860a8156de9556", |
31 "v8/test/test262/data": | 31 "v8/test/test262/data": |
32 Var("git_url") + "/external/github.com/tc39/test262.git" + "@" + "9c45e2ac68 4bae64614d8eb55789cae97323a7e7", | 32 Var("git_url") + "/external/github.com/tc39/test262.git" + "@" + "9c45e2ac68 4bae64614d8eb55789cae97323a7e7", |
33 "v8/tools/clang": | 33 "v8/tools/clang": |
34 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "749adbcdf8277f1b30 5ee55f921d9246d4aedd45", | 34 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "749adbcdf8277f1b30 5ee55f921d9246d4aedd45", |
35 } | 35 } |
36 | 36 |
37 deps_os = { | 37 deps_os = { |
38 "android": { | 38 "android": { |
39 "v8/third_party/android_tools": | 39 "v8/third_party/android_tools": |
40 Var("git_url") + "/android_tools.git" + "@" + "5b5f2f60b78198eaef25d442ac6 0f823142a8a6e", | 40 Var("git_url") + "/android_tools.git" + "@" + "04c2c06fe3ef3d93343feb6e83c d932725740d7f", |
41 }, | 41 }, |
42 "win": { | 42 "win": { |
43 "v8/third_party/cygwin": | 43 "v8/third_party/cygwin": |
44 Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a 10ff1007a97c0b7de6df", | 44 Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a 10ff1007a97c0b7de6df", |
45 } | 45 } |
46 } | 46 } |
47 | 47 |
Michael Achenbach
2016/06/06 07:42:17
The auto-roller is blocked on the missing recursio
| |
48 recursedeps = [ 'v8/third_party/android_tools' ] | |
49 | |
48 include_rules = [ | 50 include_rules = [ |
49 # Everybody can use some things. | 51 # Everybody can use some things. |
50 "+include", | 52 "+include", |
51 "+unicode", | 53 "+unicode", |
52 "+third_party/fdlibm", | 54 "+third_party/fdlibm", |
53 ] | 55 ] |
54 | 56 |
55 # checkdeps.py shouldn't check for includes in these directories: | 57 # checkdeps.py shouldn't check for includes in these directories: |
56 skip_child_includes = [ | 58 skip_child_includes = [ |
57 "build", | 59 "build", |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
219 'name': 'clang', | 221 'name': 'clang', |
220 'pattern': '.', | 222 'pattern': '.', |
221 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 223 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
222 }, | 224 }, |
223 { | 225 { |
224 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 226 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
225 "pattern": ".", | 227 "pattern": ".", |
226 "action": ["python", "v8/gypfiles/gyp_v8"], | 228 "action": ["python", "v8/gypfiles/gyp_v8"], |
227 }, | 229 }, |
228 ] | 230 ] |
OLD | NEW |