| 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 # Collection of all components. You wouldn't link to this, but this is rather | 5 # Collection of all components. You wouldn't link to this, but this is rather |
| 6 # to reference the files so they can be compiled by the build system. | 6 # to reference the files so they can be compiled by the build system. |
| 7 group("all_components") { | 7 group("all_components") { |
| 8 visibility = "//:*" # Only for the root targets to bring in. | 8 visibility = "//:*" # Only for the root targets to bring in. |
| 9 | 9 |
| 10 deps = [ | 10 deps = [ |
| 11 "//components/cloud_devices/common", | 11 "//components/cloud_devices/common", |
| 12 "//components/dom_distiller/core", |
| 12 "//components/favicon_base", | 13 "//components/favicon_base", |
| 13 "//components/json_schema", | 14 "//components/json_schema", |
| 14 "//components/language_usage_metrics", | 15 "//components/language_usage_metrics", |
| 15 "//components/metrics", | 16 "//components/metrics", |
| 16 "//components/navigation_metrics", | 17 "//components/navigation_metrics", |
| 17 "//components/onc", | 18 "//components/onc", |
| 18 "//components/os_crypt", | 19 "//components/os_crypt", |
| 19 "//components/pref_registry", | 20 "//components/pref_registry", |
| 20 "//components/query_parser", | 21 "//components/query_parser", |
| 21 "//components/resources:components_resources", | 22 "//components/resources:components_resources", |
| 22 "//components/startup_metric_utils", | 23 "//components/startup_metric_utils", |
| 23 "//components/strings:components_strings", | 24 "//components/strings", |
| 24 "//components/tracing", | 25 "//components/tracing", |
| 25 "//components/translate:translate_core_browser", | 26 "//components/translate:translate_core_browser", |
| 26 "//components/translate:translate_core_common", | 27 "//components/translate:translate_core_common", |
| 27 "//components/url_matcher", | 28 "//components/url_matcher", |
| 28 "//components/user_prefs", | 29 "//components/user_prefs", |
| 29 "//components/visitedlink/browser", | 30 "//components/visitedlink/browser", |
| 30 "//components/visitedlink/common", | 31 "//components/visitedlink/common", |
| 31 "//components/visitedlink/renderer", # Blocked on blink | 32 "//components/visitedlink/renderer", # Blocked on blink |
| 32 ] | 33 ] |
| 33 | 34 |
| 34 if (!is_ios) { | 35 if (!is_ios) { |
| 35 deps += [ "//components/keyed_service/content" ] | 36 deps += [ "//components/keyed_service/content" ] |
| 36 } | 37 } |
| 37 | 38 |
| 38 if (is_android) { | 39 if (is_android) { |
| 39 deps -= [ | 40 deps -= [ |
| 40 "//components/cloud_devices/common", # Should work, needs checking. | 41 "//components/cloud_devices/common", # Should work, needs checking. |
| 41 "//components/json_schema", # Should work, needs checking. | 42 "//components/json_schema", # Should work, needs checking. |
| 42 "//components/keyed_service/content", # Blocked on content. | 43 "//components/keyed_service/content", # Blocked on content. |
| 43 "//components/user_prefs", # Blocked on content. | 44 "//components/user_prefs", # Blocked on content. |
| 44 "//components/visitedlink/browser", # Blocked on content. | 45 "//components/visitedlink/browser", # Blocked on content. |
| 45 "//components/visitedlink/common", # Blocked on content. | 46 "//components/visitedlink/common", # Blocked on content. |
| 46 "//components/visitedlink/renderer", # Blocked on blink | 47 "//components/visitedlink/renderer", # Blocked on blink |
| 47 ] | 48 ] |
| 48 } | 49 } |
| 49 } | 50 } |
| OLD | NEW |