summaryrefslogtreecommitdiff
path: root/deps/v8/src/DEPS
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/DEPS')
-rw-r--r--deps/v8/src/DEPS12
1 files changed, 12 insertions, 0 deletions
diff --git a/deps/v8/src/DEPS b/deps/v8/src/DEPS
index 4d320535f1..4b95456a17 100644
--- a/deps/v8/src/DEPS
+++ b/deps/v8/src/DEPS
@@ -2,11 +2,23 @@ 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",
],