| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 test("blink_heap_unittests") { | 78 test("blink_heap_unittests") { |
| 79 sources = [ | 79 sources = [ |
| 80 "BlinkGCMemoryDumpProviderTest.cpp", | 80 "BlinkGCMemoryDumpProviderTest.cpp", |
| 81 "HeapCompactTest.cpp", | 81 "HeapCompactTest.cpp", |
| 82 "HeapTest.cpp", | 82 "HeapTest.cpp", |
| 83 "PersistentTest.cpp", | 83 "PersistentTest.cpp", |
| 84 "RunAllTests.cpp", | 84 "RunAllTests.cpp", |
| 85 ] | 85 ] |
| 86 | 86 |
| 87 configs += [ | 87 configs += [ |
| 88 "//third_party/WebKit/Source/wtf:wtf_config", | 88 "//third_party/WebKit/Source/platform/wtf:wtf_config", |
| 89 "//third_party/WebKit/Source:config", | 89 "//third_party/WebKit/Source:config", |
| 90 "//third_party/WebKit/Source:inside_blink", | 90 "//third_party/WebKit/Source:inside_blink", |
| 91 ] | 91 ] |
| 92 | 92 |
| 93 deps = [ | 93 deps = [ |
| 94 "//base", | 94 "//base", |
| 95 "//base/test:test_support", | 95 "//base/test:test_support", |
| 96 "//content/test:test_support", | 96 "//content/test:test_support", |
| 97 "//testing/gmock", | 97 "//testing/gmock", |
| 98 "//testing/gtest", | 98 "//testing/gtest", |
| 99 "//third_party/WebKit/Source/platform:test_support", | 99 "//third_party/WebKit/Source/platform:test_support", |
| 100 "//third_party/WebKit/Source/wtf", | 100 "//third_party/WebKit/Source/platform/wtf", |
| 101 ] | 101 ] |
| 102 if (is_android) { | 102 if (is_android) { |
| 103 deps += [ | 103 deps += [ |
| 104 "//base:base_java", | 104 "//base:base_java", |
| 105 "//content/shell/android:content_shell_assets", | 105 "//content/shell/android:content_shell_assets", |
| 106 "//net/android:net_java", | 106 "//net/android:net_java", |
| 107 ] | 107 ] |
| 108 } | 108 } |
| 109 } | 109 } |
| OLD | NEW |