OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 source_set("heap") { | 5 source_set("heap") { |
6 # This target is a logical part of the platform and only the platform target | 6 # This target is a logical part of the platform and only the platform target |
7 # should depend on it. | 7 # should depend on it. |
8 visibility = [ "//third_party/WebKit/Source/platform" ] | 8 visibility = [ "//third_party/WebKit/Source/platform" ] |
9 | 9 |
10 sources = [ | 10 sources = [ |
11 "BlinkGCMemoryDumpProvider.cpp", | 11 "BlinkGCMemoryDumpProvider.cpp", |
12 "BlinkGCMemoryDumpProvider.h", | 12 "BlinkGCMemoryDumpProvider.h", |
13 "CallbackStack.cpp", | 13 "CallbackStack.cpp", |
14 "CallbackStack.h", | 14 "CallbackStack.h", |
15 "GCInfo.cpp", | 15 "GCInfo.cpp", |
16 "GCInfo.h", | 16 "GCInfo.h", |
17 "GarbageCollected.h", | 17 "GarbageCollected.h", |
18 "Handle.h", | 18 "Handle.h", |
19 "Heap.cpp", | 19 "Heap.cpp", |
20 "Heap.h", | 20 "Heap.h", |
21 "HeapAllocator.cpp", | 21 "HeapAllocator.cpp", |
22 "HeapAllocator.h", | 22 "HeapAllocator.h", |
| 23 "HeapPage.cpp", |
| 24 "HeapPage.h", |
23 "InlinedGlobalMarkingVisitor.h", | 25 "InlinedGlobalMarkingVisitor.h", |
24 "MarkingVisitor.h", | 26 "MarkingVisitor.h", |
25 "MarkingVisitorImpl.h", | 27 "MarkingVisitorImpl.h", |
26 "PageMemory.h", | 28 "PageMemory.h", |
27 "PagePool.cpp", | 29 "PagePool.cpp", |
28 "PagePool.h", | 30 "PagePool.h", |
29 "PersistentNode.cpp", | 31 "PersistentNode.cpp", |
30 "PersistentNode.h", | 32 "PersistentNode.h", |
31 "StackFrameDepth.cpp", | 33 "StackFrameDepth.cpp", |
32 "StackFrameDepth.h", | 34 "StackFrameDepth.h", |
(...skipping 12 matching lines...) Expand all Loading... |
45 "//third_party/WebKit/Source:config", | 47 "//third_party/WebKit/Source:config", |
46 "//third_party/WebKit/Source:inside_blink", | 48 "//third_party/WebKit/Source:inside_blink", |
47 "//build/config/compiler:no_size_t_to_int_warning", | 49 "//build/config/compiler:no_size_t_to_int_warning", |
48 ] | 50 ] |
49 | 51 |
50 deps = [ | 52 deps = [ |
51 "//third_party/WebKit/Source/platform/heap/asm", | 53 "//third_party/WebKit/Source/platform/heap/asm", |
52 "//third_party/icu", | 54 "//third_party/icu", |
53 ] | 55 ] |
54 } | 56 } |
OLD | NEW |