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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 # Collection of all components. You wouldn't link to this, but this is rather | 9 # Collection of all components. You wouldn't link to this, but this is rather |
10 # to reference the files so they can be compiled by the build system. | 10 # to reference the files so they can be compiled by the build system. |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 "//components/web_resource:unit_tests", | 253 "//components/web_resource:unit_tests", |
254 "//components/webdata/common:unit_tests", | 254 "//components/webdata/common:unit_tests", |
255 | 255 |
256 # These are the deps required by the code in this target. | 256 # These are the deps required by the code in this target. |
257 "//base", | 257 "//base", |
258 "//base/test:test_support", | 258 "//base/test:test_support", |
259 "//content/test:test_support", | 259 "//content/test:test_support", |
260 "//ui/base", | 260 "//ui/base", |
261 ] | 261 ] |
262 | 262 |
| 263 if (is_android) { |
| 264 deps += [ "//components/data_reduction_proxy/content/browser:unit_tests" ] |
| 265 } |
| 266 |
263 # TODO(GYP) need this target. | 267 # TODO(GYP) need this target. |
264 #'breakpad/app/crash_keys_win_unittest.cc', | 268 #'breakpad/app/crash_keys_win_unittest.cc', |
265 | 269 |
266 # Precache tests need these defines. | 270 # Precache tests need these defines. |
267 #configs += [ "//components/precache/core:precache_config" ] | 271 #configs += [ "//components/precache/core:precache_config" ] |
268 | 272 |
269 if (toolkit_views) { | 273 if (toolkit_views) { |
270 # TODO(GYP) enable this as above. | 274 # TODO(GYP) enable this as above. |
271 #deps += [ "//components/constrained_window:unit_tests" ] | 275 #deps += [ "//components/constrained_window:unit_tests" ] |
272 } | 276 } |
273 if (is_win) { | 277 if (is_win) { |
274 deps += [ "//components/browser_watcher:unit_tests" ] | 278 deps += [ "//components/browser_watcher:unit_tests" ] |
275 } | 279 } |
276 } | 280 } |
277 } | 281 } |
OLD | NEW |