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 15 matching lines...) Expand all Loading... |
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 "PageMemory.h", | 31 "PageMemory.h", |
32 "PagePool.cpp", | 32 "PagePool.cpp", |
33 "PagePool.h", | 33 "PagePool.h", |
34 "PersistentNode.cpp", | 34 "PersistentNode.cpp", |
35 "PersistentNode.h", | 35 "PersistentNode.h", |
| 36 "SafePoint.cpp", |
| 37 "SafePoint.h", |
36 "StackFrameDepth.cpp", | 38 "StackFrameDepth.cpp", |
37 "StackFrameDepth.h", | 39 "StackFrameDepth.h", |
38 "SafePoint.cpp", | |
39 "SafePoint.h", | |
40 "ThreadState.cpp", | 40 "ThreadState.cpp", |
41 "ThreadState.h", | 41 "ThreadState.h", |
42 "ThreadingTraits.h", | 42 "ThreadingTraits.h", |
43 "TraceTraits.h", | 43 "TraceTraits.h", |
44 "Visitor.h", | 44 "Visitor.h", |
45 ] | 45 ] |
46 | 46 |
47 defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] | 47 defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] |
48 | 48 |
49 configs += [ | 49 configs += [ |
50 "//third_party/WebKit/Source:config", | 50 "//third_party/WebKit/Source:config", |
51 "//third_party/WebKit/Source:inside_blink", | 51 "//third_party/WebKit/Source:inside_blink", |
52 "//build/config/compiler:no_size_t_to_int_warning", | 52 "//build/config/compiler:no_size_t_to_int_warning", |
53 ] | 53 ] |
54 | 54 |
55 deps = [ | 55 deps = [ |
56 "//third_party/WebKit/Source/platform/heap/asm", | 56 "//third_party/WebKit/Source/platform/heap/asm", |
57 "//third_party/icu", | 57 "//third_party/icu", |
58 ] | 58 ] |
59 } | 59 } |
OLD | NEW |