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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 configs += [ | 58 configs += [ |
59 "//third_party/WebKit/Source:config", | 59 "//third_party/WebKit/Source:config", |
60 "//third_party/WebKit/Source:non_test_config", | 60 "//third_party/WebKit/Source:non_test_config", |
61 "//third_party/WebKit/Source:inside_blink", | 61 "//third_party/WebKit/Source:inside_blink", |
62 "//third_party/WebKit/Source:features", | 62 "//third_party/WebKit/Source:features", |
63 "//build/config/compiler:no_size_t_to_int_warning", | 63 "//build/config/compiler:no_size_t_to_int_warning", |
64 ] | 64 ] |
65 | 65 |
66 deps = [ | 66 deps = [ |
67 "//base", | 67 "//base", |
| 68 "//third_party/WebKit/Source/platform:make_platform_generated", |
68 "//third_party/WebKit/Source/platform/heap/asm", | 69 "//third_party/WebKit/Source/platform/heap/asm", |
69 "//third_party/icu", | 70 "//third_party/icu", |
70 "//v8", | 71 "//v8", |
71 ] | 72 ] |
72 } | 73 } |
73 | 74 |
74 test("blink_heap_unittests") { | 75 test("blink_heap_unittests") { |
75 sources = [ | 76 sources = [ |
76 "BlinkGCMemoryDumpProviderTest.cpp", | 77 "BlinkGCMemoryDumpProviderTest.cpp", |
77 "HeapTest.cpp", | 78 "HeapTest.cpp", |
(...skipping 17 matching lines...) Expand all Loading... |
95 "//third_party/WebKit/Source/wtf", | 96 "//third_party/WebKit/Source/wtf", |
96 ] | 97 ] |
97 if (is_android) { | 98 if (is_android) { |
98 deps += [ | 99 deps += [ |
99 "//base:base_java", | 100 "//base:base_java", |
100 "//content/shell/android:content_shell_assets", | 101 "//content/shell/android:content_shell_assets", |
101 "//net/android:net_java", | 102 "//net/android:net_java", |
102 ] | 103 ] |
103 } | 104 } |
104 } | 105 } |
OLD | NEW |