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