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

Side by Side Diff: src/DEPS

Issue 1321663003: [Interpreter] Add support for loading literals from the constant pool. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@int_const_pool_1
Patch Set: Created 5 years, 3 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/interpreter-assembler.h » ('j') | src/heap/identity-map.h » ('J')
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/heap/identity-map.h",
Michael Starzinger 2015/08/28 12:21:04 I have moved the IdentityMap out of the "heap" dir
rmcilroy 2015/08/28 14:42:05 Done (thanks for doing the move!)
8 "-src/interpreter", 9 "-src/interpreter",
9 "+src/interpreter/bytecodes.h", 10 "+src/interpreter/bytecodes.h",
10 "+src/interpreter/interpreter.h", 11 "+src/interpreter/interpreter.h",
11 "-src/libplatform", 12 "-src/libplatform",
12 "-include/libplatform" 13 "-include/libplatform"
13 ] 14 ]
14 15
15 specific_include_rules = { 16 specific_include_rules = {
16 ".*\.h": [ 17 ".*\.h": [
17 # 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
18 # 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
19 # 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,
20 # and can be removed once the dust has settled. 21 # and can be removed once the dust has settled.
21 "-src/v8.h", 22 "-src/v8.h",
22 ], 23 ],
23 "d8\.cc": [ 24 "d8\.cc": [
24 "+include/libplatform/libplatform.h", 25 "+include/libplatform/libplatform.h",
25 ], 26 ],
26 } 27 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/interpreter-assembler.h » ('j') | src/heap/identity-map.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698