| 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 23 matching lines...) Expand all Loading... |
| 34 "//components/data_reduction_proxy/core/browser", | 34 "//components/data_reduction_proxy/core/browser", |
| 35 "//components/data_reduction_proxy/core/common", | 35 "//components/data_reduction_proxy/core/common", |
| 36 "//components/dom_distiller/core", | 36 "//components/dom_distiller/core", |
| 37 "//components/domain_reliability", | 37 "//components/domain_reliability", |
| 38 "//components/enhanced_bookmarks", | 38 "//components/enhanced_bookmarks", |
| 39 "//components/favicon/core", | 39 "//components/favicon/core", |
| 40 "//components/favicon_base", | 40 "//components/favicon_base", |
| 41 "//components/feedback", | 41 "//components/feedback", |
| 42 "//components/gcm_driver", | 42 "//components/gcm_driver", |
| 43 "//components/google/core/browser", | 43 "//components/google/core/browser", |
| 44 "//components/history/content/browser", |
| 44 "//components/history/core/browser", | 45 "//components/history/core/browser", |
| 45 "//components/history/core/common", | 46 "//components/history/core/common", |
| 46 "//components/history/core/test", | 47 "//components/history/core/test", |
| 47 "//components/infobars/core", | 48 "//components/infobars/core", |
| 48 "//components/invalidation", | 49 "//components/invalidation", |
| 49 "//components/json_schema", | 50 "//components/json_schema", |
| 50 "//components/keyed_service/content", | 51 "//components/keyed_service/content", |
| 51 "//components/language_usage_metrics", | 52 "//components/language_usage_metrics", |
| 52 "//components/leveldb_proto", | 53 "//components/leveldb_proto", |
| 53 "//components/login", | 54 "//components/login", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 deps -= [ "//components/wifi" ] | 117 deps -= [ "//components/wifi" ] |
| 117 } | 118 } |
| 118 if (!is_chromeos) { | 119 if (!is_chromeos) { |
| 119 deps -= [ | 120 deps -= [ |
| 120 "//components/pairing", | 121 "//components/pairing", |
| 121 "//components/wifi_sync", | 122 "//components/wifi_sync", |
| 122 ] | 123 ] |
| 123 } | 124 } |
| 124 if (is_ios) { | 125 if (is_ios) { |
| 125 deps -= [ | 126 deps -= [ |
| 127 "//components/copresence_endpoints", |
| 128 "//components/history/content/browser", |
| 126 "//components/keyed_service/content", | 129 "//components/keyed_service/content", |
| 127 "//components/copresence_endpoints", | |
| 128 ] | 130 ] |
| 129 } | 131 } |
| 130 | 132 |
| 131 if (!enable_plugins) { | 133 if (!enable_plugins) { |
| 132 deps -= [ | 134 deps -= [ |
| 133 "//components/pdf/browser", | 135 "//components/pdf/browser", |
| 134 "//components/pdf/common", | 136 "//components/pdf/common", |
| 135 "//components/pdf/renderer", | 137 "//components/pdf/renderer", |
| 136 ] | 138 ] |
| 137 } | 139 } |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |