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

Side by Side Diff: src/DEPS

Issue 1293593005: Turn v8.h into a normal header. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-includes-fdlibm
Patch Set: One more addition. Rebased. 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/compiler/DEPS » ('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", 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 by now is a regular header file, it doesn't provide
18 # included in any .h files though. In the long run we should make src/v8.h 18 # any special declarations besides the V8 class. There should be no need
19 # act like any normal header file, instead of a grab-bag include. 19 # for including it in any .h files though. This rule is just a reminder,
20 # and can be removed once the dust has settled.
20 "-src/v8.h", 21 "-src/v8.h",
21 ], 22 ],
22 "d8\.cc": [ 23 "d8\.cc": [
23 "+include/libplatform/libplatform.h", 24 "+include/libplatform/libplatform.h",
24 ], 25 ],
25 } 26 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698