summaryrefslogtreecommitdiff
path: root/deps/v8/src/DEPS
blob: 4b95456a17d618b02394ddc740d23e4af4a60ad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
include_rules = [
  "+src",
  "-src/compiler",
  "+src/compiler/pipeline.h",
  "-src/heap",
  "+src/heap/heap.h",
  "+src/heap/heap-inl.h",
  "-src/interpreter",
  "+src/interpreter/bytecodes.h",
  "+src/interpreter/interpreter.h",
  "-src/libplatform",
  "-include/libplatform"
]

specific_include_rules = {
  ".*\.h": [
    # Note that src/v8.h is the top header for some .cc files, it shouldn't be
    # included in any .h files though. In the long run we should make src/v8.h
    # act like any normal header file, instead of a grab-bag include.
    "-src/v8.h",
  ],
  "d8\.cc": [
    "+include/libplatform/libplatform.h",
  ],
}