| 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 source_set("heap") { | 7 source_set("heap") { |
| 8 # This target is a logical part of the platform and only the platform target | 8 # This target is a logical part of the platform and only the platform target |
| 9 # should depend on it. | 9 # should depend on it. |
| 10 visibility = [ "//third_party/WebKit/Source/platform" ] | 10 visibility = [ "//third_party/WebKit/Source/platform" ] |
| 11 | 11 |
| 12 sources = [ | 12 sources = [ |
| 13 "BlinkGC.h", | 13 "BlinkGC.h", |
| 14 "BlinkGCMemoryDumpProvider.cpp", | 14 "BlinkGCMemoryDumpProvider.cpp", |
| 15 "BlinkGCMemoryDumpProvider.h", | 15 "BlinkGCMemoryDumpProvider.h", |
| 16 "CallbackStack.cpp", | 16 "CallbackStack.cpp", |
| 17 "CallbackStack.h", | 17 "CallbackStack.h", |
| 18 "GCInfo.cpp", | 18 "GCInfo.cpp", |
| 19 "GCInfo.h", | 19 "GCInfo.h", |
| 20 "GCTaskRunner.h", | 20 "GCTaskRunner.h", |
| 21 "GarbageCollected.h", | 21 "GarbageCollected.h", |
| 22 "Handle.h", | 22 "Handle.h", |
| 23 "Heap.cpp", | 23 "Heap.cpp", |
| 24 "Heap.h", | 24 "Heap.h", |
| 25 "HeapAllocator.cpp", | 25 "HeapAllocator.cpp", |
| 26 "HeapAllocator.h", | 26 "HeapAllocator.h", |
| 27 "HeapCompact.cpp", | 27 "HeapCompact.cpp", |
| 28 "HeapCompact.h", | 28 "HeapCompact.h", |
| 29 "HeapLinkedStack.h", |
| 29 "HeapPage.cpp", | 30 "HeapPage.cpp", |
| 30 "HeapPage.h", | 31 "HeapPage.h", |
| 32 "HeapTerminatedArray.h", |
| 33 "HeapTerminatedArrayBuilder.h", |
| 31 "Member.h", | 34 "Member.h", |
| 32 "PageMemory.cpp", | 35 "PageMemory.cpp", |
| 33 "PageMemory.h", | 36 "PageMemory.h", |
| 34 "PagePool.cpp", | 37 "PagePool.cpp", |
| 35 "PagePool.h", | 38 "PagePool.h", |
| 36 "Persistent.h", | 39 "Persistent.h", |
| 37 "PersistentNode.cpp", | 40 "PersistentNode.cpp", |
| 38 "PersistentNode.h", | 41 "PersistentNode.h", |
| 39 "SafePoint.h", | 42 "SafePoint.h", |
| 40 "SelfKeepAlive.h", | 43 "SelfKeepAlive.h", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "//third_party/WebKit/Source/wtf", | 100 "//third_party/WebKit/Source/wtf", |
| 98 ] | 101 ] |
| 99 if (is_android) { | 102 if (is_android) { |
| 100 deps += [ | 103 deps += [ |
| 101 "//base:base_java", | 104 "//base:base_java", |
| 102 "//content/shell/android:content_shell_assets", | 105 "//content/shell/android:content_shell_assets", |
| 103 "//net/android:net_java", | 106 "//net/android:net_java", |
| 104 ] | 107 ] |
| 105 } | 108 } |
| 106 } | 109 } |
| OLD | NEW |