Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: src/DEPS

Issue 1281233003: [heap] Avoid overzealous inclusion of heap internal headers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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",
6 "+src/heap/heap.h",
7 "+src/heap/heap-inl.h",
5 "-src/interpreter", 8 "-src/interpreter",
6 "+src/interpreter/bytecodes.h", 9 "+src/interpreter/bytecodes.h",
7 "+src/interpreter/interpreter.h", 10 "+src/interpreter/interpreter.h",
8 "-src/libplatform", 11 "-src/libplatform",
9 "-include/libplatform" 12 "-include/libplatform"
10 ] 13 ]
11 14
12 specific_include_rules = { 15 specific_include_rules = {
13 "d8\.cc": [ 16 "d8\.cc": [
14 "+include/libplatform/libplatform.h", 17 "+include/libplatform/libplatform.h",
15 ], 18 ],
19 # TODO(mstarzinger): Get rid of grab-bag includes from heap in v8.h soon.
20 "v8\.h": [
21 "+src/heap/spaces-inl.h",
22 "+src/heap/incremental-marking-inl.h",
23 ],
24 # TODO(mstarzinger): Only needed because of Code::CodeIterateBody cyclicity.
25 "objects\.cc": [
26 "+src/heap/objects-visiting-inl.h",
27 ],
16 } 28 }
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698