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 = [ |
(...skipping 10 matching lines...) Expand all Loading... |
21 "Handle.h", | 21 "Handle.h", |
22 "Heap.cpp", | 22 "Heap.cpp", |
23 "Heap.h", | 23 "Heap.h", |
24 "HeapAllocator.cpp", | 24 "HeapAllocator.cpp", |
25 "HeapAllocator.h", | 25 "HeapAllocator.h", |
26 "HeapPage.cpp", | 26 "HeapPage.cpp", |
27 "HeapPage.h", | 27 "HeapPage.h", |
28 "InlinedGlobalMarkingVisitor.h", | 28 "InlinedGlobalMarkingVisitor.h", |
29 "MarkingVisitor.h", | 29 "MarkingVisitor.h", |
30 "MarkingVisitorImpl.h", | 30 "MarkingVisitorImpl.h", |
| 31 "Member.h", |
31 "PageMemory.cpp", | 32 "PageMemory.cpp", |
32 "PageMemory.h", | 33 "PageMemory.h", |
33 "PagePool.cpp", | 34 "PagePool.cpp", |
34 "PagePool.h", | 35 "PagePool.h", |
| 36 "Persistent.h", |
35 "PersistentNode.cpp", | 37 "PersistentNode.cpp", |
36 "PersistentNode.h", | 38 "PersistentNode.h", |
37 "SafePoint.cpp", | 39 "SafePoint.cpp", |
38 "SafePoint.h", | 40 "SafePoint.h", |
| 41 "SelfKeepAlive.h", |
39 "StackFrameDepth.cpp", | 42 "StackFrameDepth.cpp", |
40 "StackFrameDepth.h", | 43 "StackFrameDepth.h", |
41 "ThreadState.cpp", | 44 "ThreadState.cpp", |
42 "ThreadState.h", | 45 "ThreadState.h", |
43 "ThreadingTraits.h", | 46 "ThreadingTraits.h", |
44 "TraceTraits.h", | 47 "TraceTraits.h", |
45 "Visitor.cpp", | 48 "Visitor.cpp", |
46 "Visitor.h", | 49 "Visitor.h", |
47 ] | 50 ] |
48 | 51 |
49 defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] | 52 defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] |
50 | 53 |
51 configs += [ | 54 configs += [ |
52 "//third_party/WebKit/Source:config", | 55 "//third_party/WebKit/Source:config", |
53 "//third_party/WebKit/Source:inside_blink", | 56 "//third_party/WebKit/Source:inside_blink", |
54 "//third_party/WebKit/Source:features", | 57 "//third_party/WebKit/Source:features", |
55 "//build/config/compiler:no_size_t_to_int_warning", | 58 "//build/config/compiler:no_size_t_to_int_warning", |
56 ] | 59 ] |
57 | 60 |
58 deps = [ | 61 deps = [ |
59 "//base", | 62 "//base", |
60 "//third_party/WebKit/Source/platform/heap/asm", | 63 "//third_party/WebKit/Source/platform/heap/asm", |
61 "//third_party/icu", | 64 "//third_party/icu", |
62 "//v8", | 65 "//v8", |
63 ] | 66 ] |
64 } | 67 } |
OLD | NEW |