| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "//components/variations", | 100 "//components/variations", |
| 101 "//components/visitedlink/browser", | 101 "//components/visitedlink/browser", |
| 102 "//components/visitedlink/common", | 102 "//components/visitedlink/common", |
| 103 "//components/visitedlink/renderer", | 103 "//components/visitedlink/renderer", |
| 104 "//components/web_cache/browser", | 104 "//components/web_cache/browser", |
| 105 "//components/web_cache/common", | 105 "//components/web_cache/common", |
| 106 "//components/web_cache/renderer", | 106 "//components/web_cache/renderer", |
| 107 "//components/web_modal", | 107 "//components/web_modal", |
| 108 "//components/webdata/common", | 108 "//components/webdata/common", |
| 109 "//components/wifi", | 109 "//components/wifi", |
| 110 "//components/wifi_sync", |
| 110 ] | 111 ] |
| 111 | 112 |
| 112 if (!is_win && !is_mac) { | 113 if (!is_win && !is_mac) { |
| 113 deps -= [ "//components/wifi" ] | 114 deps -= [ "//components/wifi" ] |
| 114 } | 115 } |
| 115 if (!is_chromeos) { | 116 if (!is_chromeos) { |
| 116 deps -= [ "//components/pairing" ] | 117 deps -= [ "//components/pairing" ] |
| 117 } | 118 } |
| 118 if (is_ios) { | 119 if (is_ios) { |
| 119 deps -= [ | 120 deps -= [ |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/login:unit_tests", | 239 "//components/login:unit_tests", |
| 239 "//components/metrics:unit_tests", | 240 "//components/metrics:unit_tests", |
| 240 "//components/omnibox:unit_tests", | 241 "//components/omnibox:unit_tests", |
| 241 "//components/ownership:unit_tests", | 242 "//components/ownership:unit_tests", |
| 242 "//components/proximity_auth:unit_tests", | 243 "//components/proximity_auth:unit_tests", |
| 243 "//components/variations:unit_tests", | 244 "//components/variations:unit_tests", |
| 245 "//components/wifi_sync:unit_tests", |
| 244 ] | 246 ] |
| 245 | 247 |
| 246 # TODO(GYP) need this target. | 248 # TODO(GYP) need this target. |
| 247 #'breakpad/app/crash_keys_win_unittest.cc', | 249 #'breakpad/app/crash_keys_win_unittest.cc', |
| 248 | 250 |
| 249 # Precache tests need these defines. | 251 # Precache tests need these defines. |
| 250 #configs += [ "//components/precache/core:precache_config" ] | 252 #configs += [ "//components/precache/core:precache_config" ] |
| 251 | 253 |
| 252 if (toolkit_views) { | 254 if (toolkit_views) { |
| 253 deps += [ "//components/constrained_window:unit_tests" ] | 255 deps += [ "//components/constrained_window:unit_tests" ] |
| 254 } | 256 } |
| 255 } | 257 } |
| 256 | 258 |
| 257 } | 259 } |
| OLD | NEW |