| 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/bytecode-array-iterator.h", | 9 "+src/interpreter/bytecode-array-iterator.h", |
| 10 "+src/interpreter/bytecodes.h", | 10 "+src/interpreter/bytecodes.h", |
| 11 "+src/interpreter/interpreter.h", | 11 "+src/interpreter/interpreter.h", |
| 12 "-src/libplatform", | 12 "-src/libplatform", |
| 13 "-include/libplatform" | 13 "-include/libplatform" |
| 14 ] | 14 ] |
| 15 | 15 |
| 16 specific_include_rules = { | 16 specific_include_rules = { |
| 17 ".*\.h": [ | 17 ".*\.h": [ |
| 18 # Note that src/v8.h by now is a regular header file, it doesn't provide | 18 # Note that src/v8.h by now is a regular header file, it doesn't provide |
| 19 # any special declarations besides the V8 class. There should be no need | 19 # any special declarations besides the V8 class. There should be no need |
| 20 # for including it in any .h files though. This rule is just a reminder, | 20 # for including it in any .h files though. This rule is just a reminder, |
| 21 # and can be removed once the dust has settled. | 21 # and can be removed once the dust has settled. |
| 22 "-src/v8.h", | 22 "-src/v8.h", |
| 23 ], | 23 ], |
| 24 "d8\.cc": [ | 24 "d8\.cc": [ |
| 25 "+include/libplatform/libplatform.h", | 25 "+include/libplatform/libplatform.h", |
| 26 ], | 26 ], |
| 27 "api-experimental\.cc": [ |
| 28 "+src/compiler/fast-accessor-assembler.h", |
| 29 ], |
| 27 } | 30 } |
| OLD | NEW |