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 17 matching lines...) Expand all Loading... |
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 = [ | 34 include_rules = [ |
35 # Everybody can use some things. | 35 # Everybody can use some things. |
36 "+include", | 36 "+include", |
37 "+unicode", | 37 "+unicode", |
| 38 "+third_party/fdlibm", |
38 ] | 39 ] |
39 | 40 |
40 # checkdeps.py shouldn't check for includes in these directories: | 41 # checkdeps.py shouldn't check for includes in these directories: |
41 skip_child_includes = [ | 42 skip_child_includes = [ |
42 "build", | 43 "build", |
43 "third_party", | 44 "third_party", |
44 ] | 45 ] |
45 | 46 |
46 hooks = [ | 47 hooks = [ |
47 # Pull clang-format binaries using checked-in hashes. | 48 # Pull clang-format binaries using checked-in hashes. |
(...skipping 29 matching lines...) Expand all Loading... |
77 "--bucket", "chromium-clang-format", | 78 "--bucket", "chromium-clang-format", |
78 "-s", "v8/buildtools/linux64/clang-format.sha1", | 79 "-s", "v8/buildtools/linux64/clang-format.sha1", |
79 ], | 80 ], |
80 }, | 81 }, |
81 { | 82 { |
82 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 83 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
83 "pattern": ".", | 84 "pattern": ".", |
84 "action": ["python", "v8/build/gyp_v8"], | 85 "action": ["python", "v8/build/gyp_v8"], |
85 }, | 86 }, |
86 ] | 87 ] |
OLD | NEW |