| 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 "BlinkGCInterruptor.cpp", | 11 "BlinkGCInterruptor.cpp", |
| 12 "BlinkGCInterruptor.h", | 12 "BlinkGCInterruptor.h", |
| 13 "BlinkGCMemoryDumpProvider.cpp", | 13 "BlinkGCMemoryDumpProvider.cpp", |
| 14 "BlinkGCMemoryDumpProvider.h", | 14 "BlinkGCMemoryDumpProvider.h", |
| 15 "CallbackStack.cpp", | 15 "CallbackStack.cpp", |
| 16 "CallbackStack.h", | 16 "CallbackStack.h", |
| 17 "GCInfo.cpp", | 17 "GCInfo.cpp", |
| 18 "GCInfo.h", | 18 "GCInfo.h", |
| 19 "GCTaskRunner.h", |
| 19 "GarbageCollected.h", | 20 "GarbageCollected.h", |
| 20 "Handle.h", | 21 "Handle.h", |
| 21 "Heap.cpp", | 22 "Heap.cpp", |
| 22 "Heap.h", | 23 "Heap.h", |
| 23 "HeapAllocator.cpp", | 24 "HeapAllocator.cpp", |
| 24 "HeapAllocator.h", | 25 "HeapAllocator.h", |
| 25 "HeapPage.cpp", | 26 "HeapPage.cpp", |
| 26 "HeapPage.h", | 27 "HeapPage.h", |
| 27 "InlinedGlobalMarkingVisitor.h", | 28 "InlinedGlobalMarkingVisitor.h", |
| 28 "MarkingVisitor.h", | 29 "MarkingVisitor.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 49 "//third_party/WebKit/Source:config", | 50 "//third_party/WebKit/Source:config", |
| 50 "//third_party/WebKit/Source:inside_blink", | 51 "//third_party/WebKit/Source:inside_blink", |
| 51 "//build/config/compiler:no_size_t_to_int_warning", | 52 "//build/config/compiler:no_size_t_to_int_warning", |
| 52 ] | 53 ] |
| 53 | 54 |
| 54 deps = [ | 55 deps = [ |
| 55 "//third_party/WebKit/Source/platform/heap/asm", | 56 "//third_party/WebKit/Source/platform/heap/asm", |
| 56 "//third_party/icu", | 57 "//third_party/icu", |
| 57 ] | 58 ] |
| 58 } | 59 } |
| OLD | NEW |