| 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 | 8 |
| 8 # 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 |
| 9 # 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. |
| 10 group("all_components") { | 11 group("all_components") { |
| 11 testonly = true # You shouldn't actually link to this. | 12 testonly = true # You shouldn't actually link to this. |
| 12 visibility = [ "//:*" ] # Only for the root targets to bring in. | 13 visibility = [ "//:*" ] # Only for the root targets to bring in. |
| 13 | 14 |
| 14 deps = [ | 15 deps = [ |
| 15 "//components/auto_login_parser", | 16 "//components/auto_login_parser", |
| 16 "//components/autofill/content/browser", | 17 "//components/autofill/content/browser", |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 "//components/component_updater:unit_tests", | 236 "//components/component_updater:unit_tests", |
| 236 "//components/content_settings/core/browser:unit_tests", | 237 "//components/content_settings/core/browser:unit_tests", |
| 237 "//components/content_settings/core/common:unit_tests", | 238 "//components/content_settings/core/common:unit_tests", |
| 238 "//components/crx_file:unit_tests", | 239 "//components/crx_file:unit_tests", |
| 239 "//components/data_reduction_proxy/core/browser:unit_tests", | 240 "//components/data_reduction_proxy/core/browser:unit_tests", |
| 240 "//components/data_reduction_proxy/core/common:unit_tests", | 241 "//components/data_reduction_proxy/core/common:unit_tests", |
| 241 "//components/dom_distiller/core:unit_tests", | 242 "//components/dom_distiller/core:unit_tests", |
| 242 "//components/domain_reliability:unit_tests", | 243 "//components/domain_reliability:unit_tests", |
| 243 "//components/favicon_base:unit_tests", | 244 "//components/favicon_base:unit_tests", |
| 244 "//components/google/core/browser:unit_tests", | 245 "//components/google/core/browser:unit_tests", |
| 246 "//components/invalidation:unittests", |
| 245 "//components/login:unit_tests", | 247 "//components/login:unit_tests", |
| 246 "//components/metrics:unit_tests", | 248 "//components/metrics:unit_tests", |
| 247 "//components/omnibox:unit_tests", | 249 "//components/omnibox:unit_tests", |
| 248 "//components/ownership:unit_tests", | 250 "//components/ownership:unit_tests", |
| 249 "//components/packed_ct_ev_whitelist:unit_tests", | 251 "//components/packed_ct_ev_whitelist:unit_tests", |
| 250 "//components/proximity_auth:unit_tests", | 252 "//components/proximity_auth:unit_tests", |
| 251 "//components/variations:unit_tests", | 253 "//components/variations:unit_tests", |
| 252 "//components/web_resource:unit_tests", | 254 "//components/web_resource:unit_tests", |
| 253 "//components/webdata/common:unit_tests", | 255 "//components/webdata/common:unit_tests", |
| 254 | 256 |
| 255 # These are the deps required by the code in this target. | 257 # These are the deps required by the code in this target. |
| 256 "//base", | 258 "//base", |
| 257 "//base/test:test_support", | 259 "//base/test:test_support", |
| 258 "//content/test:test_support", | 260 "//content/test:test_support", |
| 259 "//ui/base", | 261 "//ui/base", |
| 260 ] | 262 ] |
| 261 | 263 |
| 262 # TODO(GYP) need this target. | 264 # TODO(GYP) need this target. |
| 263 #'breakpad/app/crash_keys_win_unittest.cc', | 265 #'breakpad/app/crash_keys_win_unittest.cc', |
| 264 | 266 |
| 265 # Precache tests need these defines. | 267 # Precache tests need these defines. |
| 266 #configs += [ "//components/precache/core:precache_config" ] | 268 #configs += [ "//components/precache/core:precache_config" ] |
| 267 | 269 |
| 268 if (toolkit_views) { | 270 if (toolkit_views) { |
| 269 # TODO(GYP) enable this as above. | 271 # TODO(GYP) enable this as above. |
| 270 #deps += [ "//components/constrained_window:unit_tests" ] | 272 #deps += [ "//components/constrained_window:unit_tests" ] |
| 271 } | 273 } |
| 272 } | 274 } |
| OLD | NEW |