| 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") { |
| 11 testonly = true # You shouldn't actually link to this. | 11 testonly = true # You shouldn't actually link to this. |
| 12 visibility = [ "//:*" ] # Only for the root targets to bring in. | 12 visibility = [ "//:*" ] # Only for the root targets to bring in. |
| 13 | 13 |
| 14 deps = [ | 14 deps = [ |
| 15 "//components/auto_login_parser", | 15 "//components/auto_login_parser", |
| 16 "//components/autofill/content/browser", | 16 "//components/autofill/content/browser", |
| 17 "//components/autofill/content/common", | 17 "//components/autofill/content/common", |
| 18 "//components/autofill/content/renderer", | 18 "//components/autofill/content/renderer", |
| 19 "//components/bookmarks/browser", | 19 "//components/bookmarks/browser", |
| 20 "//components/bookmarks/common", | 20 "//components/bookmarks/common", |
| 21 "//components/bookmarks/test", | 21 "//components/bookmarks/test", |
| 22 "//components/captive_portal", | 22 "//components/captive_portal", |
| 23 "//components/cdm/browser", | 23 "//components/cdm/browser", |
| 24 "//components/cdm/common", | 24 "//components/cdm/common", |
| 25 "//components/cdm/renderer", | 25 "//components/cdm/renderer", |
| 26 "//components/cloud_devices/common", | 26 "//components/cloud_devices/common", |
| 27 "//components/component_updater", | 27 "//components/component_updater", |
| 28 "//components/content_settings/core/browser", | 28 "//components/content_settings/core/browser", |
| 29 "//components/content_settings/core/common", | 29 "//components/content_settings/core/common", |
| 30 "//components/copresence_sockets", |
| 30 "//components/crash/app", | 31 "//components/crash/app", |
| 31 "//components/crash/browser", | 32 "//components/crash/browser", |
| 32 "//components/crx_file", | 33 "//components/crx_file", |
| 33 "//components/data_reduction_proxy/browser", | 34 "//components/data_reduction_proxy/browser", |
| 34 "//components/data_reduction_proxy/common", | 35 "//components/data_reduction_proxy/common", |
| 35 "//components/dom_distiller/core", | 36 "//components/dom_distiller/core", |
| 36 "//components/domain_reliability", | 37 "//components/domain_reliability", |
| 37 "//components/enhanced_bookmarks", | 38 "//components/enhanced_bookmarks", |
| 38 "//components/favicon/core", | 39 "//components/favicon/core", |
| 39 "//components/favicon_base", | 40 "//components/favicon_base", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "//components/wifi", | 108 "//components/wifi", |
| 108 ] | 109 ] |
| 109 | 110 |
| 110 if (!is_win && !is_mac) { | 111 if (!is_win && !is_mac) { |
| 111 deps -= [ "//components/wifi" ] | 112 deps -= [ "//components/wifi" ] |
| 112 } | 113 } |
| 113 if (!is_chromeos) { | 114 if (!is_chromeos) { |
| 114 deps -= [ "//components/pairing" ] | 115 deps -= [ "//components/pairing" ] |
| 115 } | 116 } |
| 116 if (is_ios) { | 117 if (is_ios) { |
| 117 deps -= [ "//components/keyed_service/content" ] | 118 deps -= [ |
| 119 "//components/keyed_service/content", |
| 120 "//components/copresence_sockets", |
| 121 ] |
| 118 } | 122 } |
| 119 | 123 |
| 120 if (!enable_plugins) { | 124 if (!enable_plugins) { |
| 121 deps -= [ | 125 deps -= [ |
| 122 "//components/pdf/browser", | 126 "//components/pdf/browser", |
| 123 "//components/pdf/common", | 127 "//components/pdf/common", |
| 124 "//components/pdf/renderer", | 128 "//components/pdf/renderer", |
| 125 ] | 129 ] |
| 126 } | 130 } |
| 127 | 131 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 ] | 232 ] |
| 229 | 233 |
| 230 # TODO(GYP) need this target. | 234 # TODO(GYP) need this target. |
| 231 #'breakpad/app/crash_keys_win_unittest.cc', | 235 #'breakpad/app/crash_keys_win_unittest.cc', |
| 232 | 236 |
| 233 # Precache tests need these defines. | 237 # Precache tests need these defines. |
| 234 #configs += [ "//components/precache/core:precache_config" ] | 238 #configs += [ "//components/precache/core:precache_config" ] |
| 235 } | 239 } |
| 236 | 240 |
| 237 } | 241 } |
| OLD | NEW |