| 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 "InlinedGlobalMarkingVisitor.h", | 23 "InlinedGlobalMarkingVisitor.h", |
| 24 "MarkingVisitor.h", | 24 "MarkingVisitor.h", |
| 25 "MarkingVisitorImpl.h", | 25 "MarkingVisitorImpl.h", |
| 26 "PageMemory.h", | 26 "PageMemory.h", |
| 27 "PagePool.cpp", | 27 "PagePool.cpp", |
| 28 "PagePool.h", | 28 "PagePool.h", |
| 29 "PersistentNode.cpp", |
| 30 "PersistentNode.h", |
| 29 "StackFrameDepth.cpp", | 31 "StackFrameDepth.cpp", |
| 30 "StackFrameDepth.h", | 32 "StackFrameDepth.h", |
| 31 "SafePoint.cpp", | 33 "SafePoint.cpp", |
| 32 "SafePoint.h", | 34 "SafePoint.h", |
| 33 "ThreadState.cpp", | 35 "ThreadState.cpp", |
| 34 "ThreadState.h", | 36 "ThreadState.h", |
| 35 "ThreadingTraits.h", | 37 "ThreadingTraits.h", |
| 36 "TraceTraits.h", | 38 "TraceTraits.h", |
| 37 "Visitor.h", | 39 "Visitor.h", |
| 38 ] | 40 ] |
| 39 | 41 |
| 40 defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] | 42 defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] |
| 41 | 43 |
| 42 configs += [ | 44 configs += [ |
| 43 "//third_party/WebKit/Source:config", | 45 "//third_party/WebKit/Source:config", |
| 44 "//third_party/WebKit/Source:inside_blink", | 46 "//third_party/WebKit/Source:inside_blink", |
| 45 "//build/config/compiler:no_size_t_to_int_warning", | 47 "//build/config/compiler:no_size_t_to_int_warning", |
| 46 ] | 48 ] |
| 47 | 49 |
| 48 deps = [ | 50 deps = [ |
| 49 "//third_party/WebKit/Source/platform/heap/asm", | 51 "//third_party/WebKit/Source/platform/heap/asm", |
| 50 "//third_party/icu", | 52 "//third_party/icu", |
| 51 ] | 53 ] |
| 52 } | 54 } |
| OLD | NEW |