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 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 # Collection of all components. You wouldn't link to this, but this is rather | 10 # Collection of all components. You wouldn't link to this, but this is rather |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 "//components/auto_login_parser:unit_tests", | 233 "//components/auto_login_parser:unit_tests", |
234 "//components/autofill/content/browser:unit_tests", | 234 "//components/autofill/content/browser:unit_tests", |
235 "//components/autofill/core/browser:unit_tests", | 235 "//components/autofill/core/browser:unit_tests", |
236 "//components/autofill/core/common:unit_tests", | 236 "//components/autofill/core/common:unit_tests", |
237 "//components/bookmarks/browser:unit_tests", | 237 "//components/bookmarks/browser:unit_tests", |
238 "//components/captive_portal:unit_tests", | 238 "//components/captive_portal:unit_tests", |
239 "//components/cloud_devices/common:unit_tests", | 239 "//components/cloud_devices/common:unit_tests", |
240 "//components/content_settings/core/browser:unit_tests", | 240 "//components/content_settings/core/browser:unit_tests", |
241 "//components/content_settings/core/common:unit_tests", | 241 "//components/content_settings/core/common:unit_tests", |
242 "//components/crx_file:unit_tests", | 242 "//components/crx_file:unit_tests", |
| 243 "//components/data_reduction_proxy/content/browser:unit_tests", |
243 "//components/data_reduction_proxy/core/browser:unit_tests", | 244 "//components/data_reduction_proxy/core/browser:unit_tests", |
244 "//components/data_reduction_proxy/core/common:unit_tests", | 245 "//components/data_reduction_proxy/core/common:unit_tests", |
245 "//components/device_event_log:unit_tests", | 246 "//components/device_event_log:unit_tests", |
246 "//components/dom_distiller/core:unit_tests", | 247 "//components/dom_distiller/core:unit_tests", |
247 "//components/domain_reliability:unit_tests", | 248 "//components/domain_reliability:unit_tests", |
248 "//components/favicon_base:unit_tests", | 249 "//components/favicon_base:unit_tests", |
249 "//components/google/core/browser:unit_tests", | 250 "//components/google/core/browser:unit_tests", |
250 "//components/invalidation:unittests", | 251 "//components/invalidation:unittests", |
251 "//components/login:unit_tests", | 252 "//components/login:unit_tests", |
252 "//components/metrics:unit_tests", | 253 "//components/metrics:unit_tests", |
253 "//components/omnibox:unit_tests", | 254 "//components/omnibox:unit_tests", |
254 "//components/ownership:unit_tests", | 255 "//components/ownership:unit_tests", |
255 "//components/packed_ct_ev_whitelist:unit_tests", | 256 "//components/packed_ct_ev_whitelist:unit_tests", |
256 "//components/proximity_auth:unit_tests", | 257 "//components/proximity_auth:unit_tests", |
257 "//components/update_client:unit_tests", | 258 "//components/update_client:unit_tests", |
258 "//components/variations:unit_tests", | 259 "//components/variations:unit_tests", |
259 "//components/web_resource:unit_tests", | 260 "//components/web_resource:unit_tests", |
260 "//components/webdata/common:unit_tests", | 261 "//components/webdata/common:unit_tests", |
261 | 262 |
262 # These are the deps required by the code in this target. | 263 # These are the deps required by the code in this target. |
263 "//base", | 264 "//base", |
264 "//base/test:test_support", | 265 "//base/test:test_support", |
265 "//content/test:test_support", | 266 "//content/test:test_support", |
266 "//ui/base", | 267 "//ui/base", |
267 ] | 268 ] |
268 data_deps = [ ":components_tests_pak" ] | 269 data_deps = [ ":components_tests_pak" ] |
269 | 270 |
270 if (is_android) { | |
271 deps += [ "//components/data_reduction_proxy/content/browser:unit_tests" ] | |
272 } | |
273 | |
274 # TODO(GYP) need this target. | 271 # TODO(GYP) need this target. |
275 #'breakpad/app/crash_keys_win_unittest.cc', | 272 #'breakpad/app/crash_keys_win_unittest.cc', |
276 | 273 |
277 # Precache tests need these defines. | 274 # Precache tests need these defines. |
278 #configs += [ "//components/precache/core:precache_config" ] | 275 #configs += [ "//components/precache/core:precache_config" ] |
279 | 276 |
280 if (toolkit_views) { | 277 if (toolkit_views) { |
281 # TODO(GYP) enable this as above. | 278 # TODO(GYP) enable this as above. |
282 #deps += [ "//components/constrained_window:unit_tests" ] | 279 #deps += [ "//components/constrained_window:unit_tests" ] |
283 } | 280 } |
(...skipping 14 matching lines...) Expand all Loading... |
298 | 295 |
299 output = "$root_out_dir/components_tests_resources.pak" | 296 output = "$root_out_dir/components_tests_resources.pak" |
300 | 297 |
301 deps = [ | 298 deps = [ |
302 "//components/resources", | 299 "//components/resources", |
303 "//components/strings", | 300 "//components/strings", |
304 "//ui/resources", | 301 "//ui/resources", |
305 "//ui/strings", | 302 "//ui/strings", |
306 ] | 303 ] |
307 } | 304 } |
OLD | NEW |