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 | 6 |
7 # Collection of all components. You wouldn't link to this, but this is rather | 7 # Collection of all components. You wouldn't link to this, but this is rather |
8 # to reference the files so they can be compiled by the build system. | 8 # to reference the files so they can be compiled by the build system. |
9 group("all_components") { | 9 group("all_components") { |
10 testonly = true # You shouldn't actually link to this. | 10 testonly = true # You shouldn't actually link to this. |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 "//components/translate/core/browser", | 88 "//components/translate/core/browser", |
89 "//components/translate/core/common", | 89 "//components/translate/core/common", |
90 "//components/url_fixer", | 90 "//components/url_fixer", |
91 "//components/url_matcher", | 91 "//components/url_matcher", |
92 "//components/user_manager", | 92 "//components/user_manager", |
93 "//components/user_prefs", | 93 "//components/user_prefs", |
94 "//components/variations", | 94 "//components/variations", |
95 "//components/visitedlink/browser", | 95 "//components/visitedlink/browser", |
96 "//components/visitedlink/common", | 96 "//components/visitedlink/common", |
97 "//components/visitedlink/renderer", | 97 "//components/visitedlink/renderer", |
| 98 "//components/web_cache/browser", |
| 99 "//components/web_cache/common", |
| 100 "//components/web_cache/renderer", |
98 "//components/web_modal", | 101 "//components/web_modal", |
99 "//components/webdata/common", | 102 "//components/webdata/common", |
100 "//components/wifi", | 103 "//components/wifi", |
101 ] | 104 ] |
102 | 105 |
103 if (!is_win && !is_mac) { | 106 if (!is_win && !is_mac) { |
104 deps -= [ "//components/wifi" ] | 107 deps -= [ "//components/wifi" ] |
105 } | 108 } |
106 if (!is_chromeos) { | 109 if (!is_chromeos) { |
107 deps -= [ "//components/pairing" ] | 110 deps -= [ "//components/pairing" ] |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 "//components/search_provider_logos", # Should work, needs checking. | 167 "//components/search_provider_logos", # Should work, needs checking. |
165 "//components/sessions", # Blocked on content. | 168 "//components/sessions", # Blocked on content. |
166 "//components/signin/core/browser", # Should work, needs checking. | 169 "//components/signin/core/browser", # Should work, needs checking. |
167 "//components/translate/content/browser", # Blocked on content. | 170 "//components/translate/content/browser", # Blocked on content. |
168 "//components/translate/content/common", # Blocked on content. | 171 "//components/translate/content/common", # Blocked on content. |
169 "//components/translate/content/renderer", # Blocked on content. | 172 "//components/translate/content/renderer", # Blocked on content. |
170 "//components/user_prefs", # Blocked on content. | 173 "//components/user_prefs", # Blocked on content. |
171 "//components/visitedlink/browser", # Blocked on content. | 174 "//components/visitedlink/browser", # Blocked on content. |
172 "//components/visitedlink/common", # Blocked on content. | 175 "//components/visitedlink/common", # Blocked on content. |
173 "//components/visitedlink/renderer", # Blocked on blink | 176 "//components/visitedlink/renderer", # Blocked on blink |
| 177 "//components/web_cache/browser", # Blocked on content and blink. |
| 178 "//components/web_cache/renderer", # Blocked on content and blink. |
174 "//components/web_modal", # Blocked on content. | 179 "//components/web_modal", # Blocked on content. |
175 ] | 180 ] |
176 } | 181 } |
177 | 182 |
178 if (!is_ios && !is_android) { | 183 if (!is_ios && !is_android) { |
179 deps += [ | 184 deps += [ |
180 "//components/copresence", | 185 "//components/copresence", |
181 "//components/storage_monitor", | 186 "//components/storage_monitor", |
182 ] | 187 ] |
183 } | 188 } |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 ] | 224 ] |
220 | 225 |
221 # TODO(GYP) need this target. | 226 # TODO(GYP) need this target. |
222 #'breakpad/app/crash_keys_win_unittest.cc', | 227 #'breakpad/app/crash_keys_win_unittest.cc', |
223 | 228 |
224 # Precache tests need these defines. | 229 # Precache tests need these defines. |
225 #configs += [ "//components/precache/core:precache_config" ] | 230 #configs += [ "//components/precache/core:precache_config" ] |
226 } | 231 } |
227 | 232 |
228 } | 233 } |
OLD | NEW |