Chromium Code Reviews| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 114 | 114 |
| 115 if (!is_win && !is_mac) { | 115 if (!is_win && !is_mac) { |
| 116 deps -= [ "//components/wifi" ] | 116 deps -= [ "//components/wifi" ] |
| 117 } | 117 } |
| 118 if (!is_chromeos) { | 118 if (!is_chromeos) { |
| 119 deps -= [ | 119 deps -= [ |
| 120 "//components/pairing", | 120 "//components/pairing", |
| 121 "//components/wifi_sync", | 121 "//components/wifi_sync", |
| 122 ] | 122 ] |
| 123 } | 123 } |
| 124 if (is_ios) { | 124 if (is_ios) { |
|
blundell
2015/01/14 20:52:11
The components_unittests target should have a bloc
megjablon
2015/01/15 00:51:59
Done.
| |
| 125 deps -= [ | 125 deps -= [ |
| 126 "//components/keyed_service/content", | 126 "//components/keyed_service/content", |
| 127 "//components/copresence_endpoints", | 127 "//components/copresence_endpoints", |
| 128 ] | 128 ] |
| 129 } | 129 } |
| 130 | 130 |
| 131 if (!enable_plugins) { | 131 if (!enable_plugins) { |
| 132 deps -= [ | 132 deps -= [ |
| 133 "//components/pdf/browser", | 133 "//components/pdf/browser", |
| 134 "//components/pdf/common", | 134 "//components/pdf/common", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 226 "//components/autofill/content/browser:unit_tests", | 226 "//components/autofill/content/browser:unit_tests", |
| 227 "//components/autofill/core/browser:unit_tests", | 227 "//components/autofill/core/browser:unit_tests", |
| 228 "//components/autofill/core/common:unit_tests", | 228 "//components/autofill/core/common:unit_tests", |
| 229 "//components/bookmarks/browser:unit_tests", | 229 "//components/bookmarks/browser:unit_tests", |
| 230 "//components/captive_portal:unit_tests", | 230 "//components/captive_portal:unit_tests", |
| 231 "//components/cloud_devices/common:unit_tests", | 231 "//components/cloud_devices/common:unit_tests", |
| 232 "//components/component_updater:unit_tests", | 232 "//components/component_updater:unit_tests", |
| 233 "//components/content_settings/core/browser:unit_tests", | 233 "//components/content_settings/core/browser:unit_tests", |
| 234 "//components/content_settings/core/common:unit_tests", | 234 "//components/content_settings/core/common:unit_tests", |
| 235 "//components/crx_file:unit_tests", | 235 "//components/crx_file:unit_tests", |
| 236 "//components/data_reduction_proxy/content/browser: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", |
| 245 "//components/proximity_auth:unit_tests", | 246 "//components/proximity_auth:unit_tests", |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 258 #'breakpad/app/crash_keys_win_unittest.cc', | 259 #'breakpad/app/crash_keys_win_unittest.cc', |
| 259 | 260 |
| 260 # Precache tests need these defines. | 261 # Precache tests need these defines. |
| 261 #configs += [ "//components/precache/core:precache_config" ] | 262 #configs += [ "//components/precache/core:precache_config" ] |
| 262 | 263 |
| 263 if (toolkit_views) { | 264 if (toolkit_views) { |
| 264 # TODO(GYP) enable this as above. | 265 # TODO(GYP) enable this as above. |
| 265 #deps += [ "//components/constrained_window:unit_tests" ] | 266 #deps += [ "//components/constrained_window:unit_tests" ] |
| 266 } | 267 } |
| 267 } | 268 } |
| OLD | NEW |