| 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" ] |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "GarbageCollected.h", | 23 "GarbageCollected.h", |
| 24 "Handle.h", | 24 "Handle.h", |
| 25 "Heap.cpp", | 25 "Heap.cpp", |
| 26 "Heap.h", | 26 "Heap.h", |
| 27 "HeapAllocator.cpp", | 27 "HeapAllocator.cpp", |
| 28 "HeapAllocator.h", | 28 "HeapAllocator.h", |
| 29 "HeapCompact.cpp", | 29 "HeapCompact.cpp", |
| 30 "HeapCompact.h", | 30 "HeapCompact.h", |
| 31 "HeapPage.cpp", | 31 "HeapPage.cpp", |
| 32 "HeapPage.h", | 32 "HeapPage.h", |
| 33 "InlinedGlobalMarkingVisitor.h", | |
| 34 "MarkingVisitor.h", | |
| 35 "MarkingVisitorImpl.h", | |
| 36 "Member.h", | 33 "Member.h", |
| 37 "PageMemory.cpp", | 34 "PageMemory.cpp", |
| 38 "PageMemory.h", | 35 "PageMemory.h", |
| 39 "PagePool.cpp", | 36 "PagePool.cpp", |
| 40 "PagePool.h", | 37 "PagePool.h", |
| 41 "Persistent.h", | 38 "Persistent.h", |
| 42 "PersistentNode.cpp", | 39 "PersistentNode.cpp", |
| 43 "PersistentNode.h", | 40 "PersistentNode.h", |
| 44 "SafePoint.cpp", | 41 "SafePoint.cpp", |
| 45 "SafePoint.h", | 42 "SafePoint.h", |
| 46 "SelfKeepAlive.h", | 43 "SelfKeepAlive.h", |
| 47 "SparseHeapBitmap.cpp", | 44 "SparseHeapBitmap.cpp", |
| 48 "SparseHeapBitmap.h", | 45 "SparseHeapBitmap.h", |
| 49 "StackFrameDepth.cpp", | 46 "StackFrameDepth.cpp", |
| 50 "StackFrameDepth.h", | 47 "StackFrameDepth.h", |
| 51 "ThreadState.cpp", | 48 "ThreadState.cpp", |
| 52 "ThreadState.h", | 49 "ThreadState.h", |
| 53 "ThreadingTraits.h", | 50 "ThreadingTraits.h", |
| 54 "TraceTraits.h", | 51 "TraceTraits.h", |
| 55 "Visitor.cpp", | 52 "Visitor.cpp", |
| 56 "Visitor.h", | 53 "Visitor.h", |
| 54 "VisitorImpl.h", |
| 57 "WrapperVisitor.h", | 55 "WrapperVisitor.h", |
| 58 ] | 56 ] |
| 59 | 57 |
| 60 defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] | 58 defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] |
| 61 | 59 |
| 62 configs += [ | 60 configs += [ |
| 63 "//third_party/WebKit/Source:blink_pch", | 61 "//third_party/WebKit/Source:blink_pch", |
| 64 "//third_party/WebKit/Source:config", | 62 "//third_party/WebKit/Source:config", |
| 65 "//third_party/WebKit/Source:non_test_config", | 63 "//third_party/WebKit/Source:non_test_config", |
| 66 "//third_party/WebKit/Source:inside_blink", | 64 "//third_party/WebKit/Source:inside_blink", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "//third_party/WebKit/Source/wtf", | 100 "//third_party/WebKit/Source/wtf", |
| 103 ] | 101 ] |
| 104 if (is_android) { | 102 if (is_android) { |
| 105 deps += [ | 103 deps += [ |
| 106 "//base:base_java", | 104 "//base:base_java", |
| 107 "//content/shell/android:content_shell_assets", | 105 "//content/shell/android:content_shell_assets", |
| 108 "//net/android:net_java", | 106 "//net/android:net_java", |
| 109 ] | 107 ] |
| 110 } | 108 } |
| 111 } | 109 } |
| OLD | NEW |