| 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 18 matching lines...) Expand all Loading... |
| 29 "HeapPage.cpp", | 29 "HeapPage.cpp", |
| 30 "HeapPage.h", | 30 "HeapPage.h", |
| 31 "Member.h", | 31 "Member.h", |
| 32 "PageMemory.cpp", | 32 "PageMemory.cpp", |
| 33 "PageMemory.h", | 33 "PageMemory.h", |
| 34 "PagePool.cpp", | 34 "PagePool.cpp", |
| 35 "PagePool.h", | 35 "PagePool.h", |
| 36 "Persistent.h", | 36 "Persistent.h", |
| 37 "PersistentNode.cpp", | 37 "PersistentNode.cpp", |
| 38 "PersistentNode.h", | 38 "PersistentNode.h", |
| 39 "SafePoint.cpp", | |
| 40 "SafePoint.h", | 39 "SafePoint.h", |
| 41 "SelfKeepAlive.h", | 40 "SelfKeepAlive.h", |
| 42 "SparseHeapBitmap.cpp", | 41 "SparseHeapBitmap.cpp", |
| 43 "SparseHeapBitmap.h", | 42 "SparseHeapBitmap.h", |
| 44 "StackFrameDepth.cpp", | 43 "StackFrameDepth.cpp", |
| 45 "StackFrameDepth.h", | 44 "StackFrameDepth.h", |
| 46 "ThreadState.cpp", | 45 "ThreadState.cpp", |
| 47 "ThreadState.h", | 46 "ThreadState.h", |
| 48 "ThreadingTraits.h", | 47 "ThreadingTraits.h", |
| 49 "TraceTraits.h", | 48 "TraceTraits.h", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "//third_party/WebKit/Source/wtf", | 97 "//third_party/WebKit/Source/wtf", |
| 99 ] | 98 ] |
| 100 if (is_android) { | 99 if (is_android) { |
| 101 deps += [ | 100 deps += [ |
| 102 "//base:base_java", | 101 "//base:base_java", |
| 103 "//content/shell/android:content_shell_assets", | 102 "//content/shell/android:content_shell_assets", |
| 104 "//net/android:net_java", | 103 "//net/android:net_java", |
| 105 ] | 104 ] |
| 106 } | 105 } |
| 107 } | 106 } |
| OLD | NEW |