| 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 visibility = "//:*" # Only for the root targets to bring in. | 10 visibility = "//:*" # Only for the root targets to bring in. |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "//components/strings", | 81 "//components/strings", |
| 82 "//components/sync_driver", | 82 "//components/sync_driver", |
| 83 "//components/tracing", | 83 "//components/tracing", |
| 84 "//components/translate/content/browser", | 84 "//components/translate/content/browser", |
| 85 "//components/translate/content/common", | 85 "//components/translate/content/common", |
| 86 "//components/translate/content/renderer", | 86 "//components/translate/content/renderer", |
| 87 "//components/translate/core/browser", | 87 "//components/translate/core/browser", |
| 88 "//components/translate/core/common", | 88 "//components/translate/core/common", |
| 89 "//components/url_fixer", | 89 "//components/url_fixer", |
| 90 "//components/url_matcher", | 90 "//components/url_matcher", |
| 91 "//components/usb_service", | |
| 92 "//components/user_manager", | 91 "//components/user_manager", |
| 93 "//components/user_prefs", | 92 "//components/user_prefs", |
| 94 "//components/variations", | 93 "//components/variations", |
| 95 "//components/visitedlink/browser", | 94 "//components/visitedlink/browser", |
| 96 "//components/visitedlink/common", | 95 "//components/visitedlink/common", |
| 97 "//components/visitedlink/renderer", | 96 "//components/visitedlink/renderer", |
| 98 "//components/web_modal", | 97 "//components/web_modal", |
| 99 "//components/webdata/common", | 98 "//components/webdata/common", |
| 100 "//components/wifi", | 99 "//components/wifi", |
| 101 ] | 100 ] |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 "//components/precache/core", # Should work, needs checking. | 159 "//components/precache/core", # Should work, needs checking. |
| 161 "//components/rappor", # Should work, needs checking. | 160 "//components/rappor", # Should work, needs checking. |
| 162 "//components/renderer_context_menu", # Blocked on content. | 161 "//components/renderer_context_menu", # Blocked on content. |
| 163 "//components/search_engines", # Should work, needs checking. | 162 "//components/search_engines", # Should work, needs checking. |
| 164 "//components/search_provider_logos", # Should work, needs checking. | 163 "//components/search_provider_logos", # Should work, needs checking. |
| 165 "//components/sessions", # Blocked on content. | 164 "//components/sessions", # Blocked on content. |
| 166 "//components/signin/core/browser", # Should work, needs checking. | 165 "//components/signin/core/browser", # Should work, needs checking. |
| 167 "//components/translate/content/browser", # Blocked on content. | 166 "//components/translate/content/browser", # Blocked on content. |
| 168 "//components/translate/content/common", # Blocked on content. | 167 "//components/translate/content/common", # Blocked on content. |
| 169 "//components/translate/content/renderer", # Blocked on content. | 168 "//components/translate/content/renderer", # Blocked on content. |
| 170 "//components/usb_service", # Blocked on content. | |
| 171 "//components/user_prefs", # Blocked on content. | 169 "//components/user_prefs", # Blocked on content. |
| 172 "//components/visitedlink/browser", # Blocked on content. | 170 "//components/visitedlink/browser", # Blocked on content. |
| 173 "//components/visitedlink/common", # Blocked on content. | 171 "//components/visitedlink/common", # Blocked on content. |
| 174 "//components/visitedlink/renderer", # Blocked on blink | 172 "//components/visitedlink/renderer", # Blocked on blink |
| 175 "//components/web_modal", # Blocked on content. | 173 "//components/web_modal", # Blocked on content. |
| 176 ] | 174 ] |
| 177 } | 175 } |
| 178 | 176 |
| 179 if (!is_ios && !is_android) { | 177 if (!is_ios && !is_android) { |
| 180 deps += [ | 178 deps += [ |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 ] | 217 ] |
| 220 | 218 |
| 221 # TODO(GYP) need this target. | 219 # TODO(GYP) need this target. |
| 222 #'breakpad/app/crash_keys_win_unittest.cc', | 220 #'breakpad/app/crash_keys_win_unittest.cc', |
| 223 | 221 |
| 224 # Precache tests need these defines. | 222 # Precache tests need these defines. |
| 225 #configs += [ "//components/precache/core:precache_config" ] | 223 #configs += [ "//components/precache/core:precache_config" ] |
| 226 } | 224 } |
| 227 | 225 |
| 228 } | 226 } |
| OLD | NEW |