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": "fb782d4369d5ae04f17a2fceef7de5a63e50f07b", | 8 "buildtools_revision": "fb782d4369d5ae04f17a2fceef7de5a63e50f07b", |
9 } | 9 } |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 | 34 |
35 "v8/third_party/python_26": | 35 "v8/third_party/python_26": |
36 Var("chromium_trunk") + "/tools/third_party/python_26@89111", | 36 Var("chromium_trunk") + "/tools/third_party/python_26@89111", |
37 } | 37 } |
38 } | 38 } |
39 | 39 |
40 include_rules = [ | 40 include_rules = [ |
41 # Everybody can use some things. | 41 # Everybody can use some things. |
42 "+include", | 42 "+include", |
43 "+unicode", | 43 "+unicode", |
| 44 "+third_party/fdlibm", |
44 ] | 45 ] |
45 | 46 |
46 # checkdeps.py shouldn't check for includes in these directories: | 47 # checkdeps.py shouldn't check for includes in these directories: |
47 skip_child_includes = [ | 48 skip_child_includes = [ |
48 "build", | 49 "build", |
49 "third_party", | 50 "third_party", |
50 ] | 51 ] |
51 | 52 |
52 hooks = [ | 53 hooks = [ |
53 # Pull clang-format binaries using checked-in hashes. | 54 # Pull clang-format binaries using checked-in hashes. |
(...skipping 29 matching lines...) Expand all Loading... |
83 "--bucket", "chromium-clang-format", | 84 "--bucket", "chromium-clang-format", |
84 "-s", "v8/buildtools/linux64/clang-format.sha1", | 85 "-s", "v8/buildtools/linux64/clang-format.sha1", |
85 ], | 86 ], |
86 }, | 87 }, |
87 { | 88 { |
88 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 89 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
89 "pattern": ".", | 90 "pattern": ".", |
90 "action": ["python", "v8/build/gyp_v8"], | 91 "action": ["python", "v8/build/gyp_v8"], |
91 }, | 92 }, |
92 ] | 93 ] |
OLD | NEW |