| 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 "BlinkGCInterruptor.cpp", | |
| 15 "BlinkGCInterruptor.h", | |
| 16 "BlinkGCMemoryDumpProvider.cpp", | 14 "BlinkGCMemoryDumpProvider.cpp", |
| 17 "BlinkGCMemoryDumpProvider.h", | 15 "BlinkGCMemoryDumpProvider.h", |
| 18 "CallbackStack.cpp", | 16 "CallbackStack.cpp", |
| 19 "CallbackStack.h", | 17 "CallbackStack.h", |
| 20 "GCInfo.cpp", | 18 "GCInfo.cpp", |
| 21 "GCInfo.h", | 19 "GCInfo.h", |
| 22 "GCTaskRunner.h", | 20 "GCTaskRunner.h", |
| 23 "GarbageCollected.h", | 21 "GarbageCollected.h", |
| 24 "Handle.h", | 22 "Handle.h", |
| 25 "Heap.cpp", | 23 "Heap.cpp", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "//third_party/WebKit/Source/wtf", | 98 "//third_party/WebKit/Source/wtf", |
| 101 ] | 99 ] |
| 102 if (is_android) { | 100 if (is_android) { |
| 103 deps += [ | 101 deps += [ |
| 104 "//base:base_java", | 102 "//base:base_java", |
| 105 "//content/shell/android:content_shell_assets", | 103 "//content/shell/android:content_shell_assets", |
| 106 "//net/android:net_java", | 104 "//net/android:net_java", |
| 107 ] | 105 ] |
| 108 } | 106 } |
| 109 } | 107 } |
| OLD | NEW |