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_trunk": "https://src.chromium.org/svn/trunk", | 6 "chromium_trunk": "https://src.chromium.org/svn/trunk", |
7 | 7 |
8 "buildtools_revision": "83ed7189066fd9b4b9ea15ffc2d4ab6d2da62571", | 8 "buildtools_revision": "83ed7189066fd9b4b9ea15ffc2d4ab6d2da62571", |
9 } | 9 } |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 deps_os = { | 24 deps_os = { |
25 "win": { | 25 "win": { |
26 "v8/third_party/cygwin": | 26 "v8/third_party/cygwin": |
27 Var("chromium_trunk") + "/deps/third_party/cygwin@66844", | 27 Var("chromium_trunk") + "/deps/third_party/cygwin@66844", |
28 | 28 |
29 "v8/third_party/python_26": | 29 "v8/third_party/python_26": |
30 Var("chromium_trunk") + "/tools/third_party/python_26@89111", | 30 Var("chromium_trunk") + "/tools/third_party/python_26@89111", |
31 } | 31 } |
32 } | 32 } |
33 | 33 |
| 34 include_rules = [ |
| 35 # Everybody can use some things. |
| 36 "+include", |
| 37 "+unicode", |
| 38 ] |
| 39 |
| 40 # checkdeps.py shouldn't check for includes in these directories: |
| 41 skip_child_includes = [ |
| 42 "build", |
| 43 "third_party", |
| 44 ] |
| 45 |
34 hooks = [ | 46 hooks = [ |
35 { | 47 { |
36 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 48 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
37 "pattern": ".", | 49 "pattern": ".", |
38 "action": ["python", "v8/build/gyp_v8"], | 50 "action": ["python", "v8/build/gyp_v8"], |
39 }, | 51 }, |
40 ] | 52 ] |
OLD | NEW |