| 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 | 7 |
| 8 # Collection of all components. You wouldn't link to this, but this is rather | 8 # 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. | 9 # to reference the files so they can be compiled by the build system. |
| 10 group("all_components") { | 10 group("all_components") { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "//components/leveldb_proto", | 53 "//components/leveldb_proto", |
| 54 "//components/login", | 54 "//components/login", |
| 55 "//components/metrics", | 55 "//components/metrics", |
| 56 "//components/navigation_interception", | 56 "//components/navigation_interception", |
| 57 "//components/navigation_metrics", | 57 "//components/navigation_metrics", |
| 58 "//components/network_time", | 58 "//components/network_time", |
| 59 "//components/omaha_client", | 59 "//components/omaha_client", |
| 60 "//components/omnibox", | 60 "//components/omnibox", |
| 61 "//components/onc", | 61 "//components/onc", |
| 62 "//components/os_crypt", | 62 "//components/os_crypt", |
| 63 "//components/packed_ct_ev_whitelist", |
| 63 "//components/pairing", | 64 "//components/pairing", |
| 64 "//components/password_manager/content/browser", | 65 "//components/password_manager/content/browser", |
| 65 "//components/password_manager/core/browser", | 66 "//components/password_manager/core/browser", |
| 66 "//components/password_manager/core/common", | 67 "//components/password_manager/core/common", |
| 67 "//components/pdf/browser", | 68 "//components/pdf/browser", |
| 68 "//components/pdf/common", | 69 "//components/pdf/common", |
| 69 "//components/pdf/renderer", | 70 "//components/pdf/renderer", |
| 70 "//components/plugins/renderer", | 71 "//components/plugins/renderer", |
| 71 "//components/policy", | 72 "//components/policy", |
| 72 "//components/power", | 73 "//components/power", |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 "//components/crx_file:unit_tests", | 234 "//components/crx_file:unit_tests", |
| 234 "//components/data_reduction_proxy/core/browser:unit_tests", | 235 "//components/data_reduction_proxy/core/browser:unit_tests", |
| 235 "//components/data_reduction_proxy/core/common:unit_tests", | 236 "//components/data_reduction_proxy/core/common:unit_tests", |
| 236 "//components/dom_distiller/core:unit_tests", | 237 "//components/dom_distiller/core:unit_tests", |
| 237 "//components/domain_reliability:unit_tests", | 238 "//components/domain_reliability:unit_tests", |
| 238 "//components/google/core/browser:unit_tests", | 239 "//components/google/core/browser:unit_tests", |
| 239 "//components/login:unit_tests", | 240 "//components/login:unit_tests", |
| 240 "//components/metrics:unit_tests", | 241 "//components/metrics:unit_tests", |
| 241 "//components/omnibox:unit_tests", | 242 "//components/omnibox:unit_tests", |
| 242 "//components/ownership:unit_tests", | 243 "//components/ownership:unit_tests", |
| 244 "//components/packed_ct_ev_whitelist:unit_tests", |
| 243 "//components/proximity_auth:unit_tests", | 245 "//components/proximity_auth:unit_tests", |
| 244 "//components/variations:unit_tests", | 246 "//components/variations:unit_tests", |
| 245 "//components/web_resource:unit_tests", | 247 "//components/web_resource:unit_tests", |
| 246 "//components/webdata/common:unit_tests", | 248 "//components/webdata/common:unit_tests", |
| 247 | 249 |
| 248 # These are the deps required by the code in this target. | 250 # These are the deps required by the code in this target. |
| 249 "//base", | 251 "//base", |
| 250 "//base/test:test_support", | 252 "//base/test:test_support", |
| 251 "//content/test:test_support", | 253 "//content/test:test_support", |
| 252 "//ui/base", | 254 "//ui/base", |
| 253 ] | 255 ] |
| 254 | 256 |
| 255 # TODO(GYP) need this target. | 257 # TODO(GYP) need this target. |
| 256 #'breakpad/app/crash_keys_win_unittest.cc', | 258 #'breakpad/app/crash_keys_win_unittest.cc', |
| 257 | 259 |
| 258 # Precache tests need these defines. | 260 # Precache tests need these defines. |
| 259 #configs += [ "//components/precache/core:precache_config" ] | 261 #configs += [ "//components/precache/core:precache_config" ] |
| 260 | 262 |
| 261 if (toolkit_views) { | 263 if (toolkit_views) { |
| 262 # TODO(GYP) enable this as above. | 264 # TODO(GYP) enable this as above. |
| 263 #deps += [ "//components/constrained_window:unit_tests" ] | 265 #deps += [ "//components/constrained_window:unit_tests" ] |
| 264 } | 266 } |
| 265 } | 267 } |
| OLD | NEW |