| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "//components/visitedlink/common", | 103 "//components/visitedlink/common", |
| 104 "//components/visitedlink/renderer", | 104 "//components/visitedlink/renderer", |
| 105 "//components/wallpaper", | 105 "//components/wallpaper", |
| 106 "//components/web_cache/browser", | 106 "//components/web_cache/browser", |
| 107 "//components/web_cache/common", | 107 "//components/web_cache/common", |
| 108 "//components/web_cache/renderer", | 108 "//components/web_cache/renderer", |
| 109 "//components/web_modal", | 109 "//components/web_modal", |
| 110 "//components/webdata/common", | 110 "//components/webdata/common", |
| 111 "//components/web_resource", | 111 "//components/web_resource", |
| 112 "//components/wifi", | 112 "//components/wifi", |
| 113 "//components/wifi_sync", |
| 113 ] | 114 ] |
| 114 | 115 |
| 115 if (!is_win && !is_mac) { | 116 if (!is_win && !is_mac) { |
| 116 deps -= [ "//components/wifi" ] | 117 deps -= [ "//components/wifi" ] |
| 117 } | 118 } |
| 118 if (!is_chromeos) { | 119 if (!is_chromeos) { |
| 119 deps -= [ "//components/pairing" ] | 120 deps -= [ |
| 121 "//components/pairing", |
| 122 "//components/wifi_sync", |
| 123 ] |
| 120 } | 124 } |
| 121 if (is_ios) { | 125 if (is_ios) { |
| 122 deps -= [ | 126 deps -= [ |
| 123 "//components/keyed_service/content", | 127 "//components/keyed_service/content", |
| 124 "//components/copresence_endpoints", | 128 "//components/copresence_endpoints", |
| 125 ] | 129 ] |
| 126 } | 130 } |
| 127 | 131 |
| 128 if (!enable_plugins) { | 132 if (!enable_plugins) { |
| 129 deps -= [ | 133 deps -= [ |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 #'breakpad/app/crash_keys_win_unittest.cc', | 260 #'breakpad/app/crash_keys_win_unittest.cc', |
| 257 | 261 |
| 258 # Precache tests need these defines. | 262 # Precache tests need these defines. |
| 259 #configs += [ "//components/precache/core:precache_config" ] | 263 #configs += [ "//components/precache/core:precache_config" ] |
| 260 | 264 |
| 261 if (toolkit_views) { | 265 if (toolkit_views) { |
| 262 # TODO(GYP) enable this as above. | 266 # TODO(GYP) enable this as above. |
| 263 #deps += [ "//components/constrained_window:unit_tests" ] | 267 #deps += [ "//components/constrained_window:unit_tests" ] |
| 264 } | 268 } |
| 265 } | 269 } |
| OLD | NEW |