OLD | NEW |
1 include_rules = [ | 1 include_rules = [ |
2 "+src", | 2 "+src", |
3 "-src/compiler", | 3 "-src/compiler", |
4 "+src/compiler/pipeline.h", | 4 "+src/compiler/pipeline.h", |
5 "-src/heap", | 5 "-src/heap", |
6 "+src/heap/heap.h", | 6 "+src/heap/heap.h", |
7 "+src/heap/heap-inl.h", | 7 "+src/heap/heap-inl.h", |
8 "-src/interpreter", | 8 "-src/interpreter", |
9 "+src/interpreter/bytecodes.h", | 9 "+src/interpreter/bytecodes.h", |
10 "+src/interpreter/interpreter.h", | 10 "+src/interpreter/interpreter.h", |
11 "-src/libplatform", | 11 "-src/libplatform", |
12 "-include/libplatform" | 12 "-include/libplatform" |
13 ] | 13 ] |
14 | 14 |
15 specific_include_rules = { | 15 specific_include_rules = { |
16 ".*\.h": [ | 16 ".*\.h": [ |
17 # Note that src/v8.h is the top header for some .cc files, it shouldn't be | 17 # Note that src/v8.h is the top header for some .cc files, it shouldn't be |
18 # included in any .h files though. In the long run we should make src/v8.h | 18 # included in any .h files though. In the long run we should make src/v8.h |
19 # act like any normal header file, instead of a grab-bag include. | 19 # act like any normal header file, instead of a grab-bag include. |
20 "-src/v8.h", | 20 "-src/v8.h", |
21 ], | 21 ], |
22 "d8\.cc": [ | 22 "d8\.cc": [ |
23 "+include/libplatform/libplatform.h", | 23 "+include/libplatform/libplatform.h", |
24 ], | 24 ], |
25 # TODO(mstarzinger): Only needed because of Code::CodeIterateBody cyclicity. | |
26 "objects\.cc": [ | |
27 "+src/heap/objects-visiting-inl.h", | |
28 ], | |
29 } | 25 } |
OLD | NEW |