| 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/autocomplete", | 
| 11     "//components/autofill/content/browser", | 12     "//components/autofill/content/browser", | 
| 12     "//components/autofill/content/common", | 13     "//components/autofill/content/common", | 
| 13     "//components/autofill/content/renderer", | 14     "//components/autofill/content/renderer", | 
|  | 15     "//components/captive_portal", | 
| 14     "//components/cloud_devices/common", | 16     "//components/cloud_devices/common", | 
|  | 17     "//components/data_reduction_proxy/browser", | 
|  | 18     "//components/data_reduction_proxy/common", | 
| 15     "//components/dom_distiller/core", | 19     "//components/dom_distiller/core", | 
| 16     "//components/domain_reliability", | 20     "//components/domain_reliability", | 
| 17     "//components/favicon_base", | 21     "//components/favicon_base", | 
| 18     "//components/favicon/core", | 22     "//components/favicon/core", | 
| 19     "//components/history/core/browser", | 23     "//components/history/core/browser", | 
| 20     "//components/history/core/common", | 24     "//components/history/core/common", | 
| 21     "//components/history/core/test", | 25     "//components/history/core/test", | 
| 22     "//components/json_schema", | 26     "//components/json_schema", | 
| 23     "//components/language_usage_metrics", | 27     "//components/language_usage_metrics", | 
| 24     "//components/metrics", | 28     "//components/metrics", | 
| 25     "//components/navigation_metrics", | 29     "//components/navigation_metrics", | 
| 26     "//components/onc", | 30     "//components/onc", | 
| 27     "//components/os_crypt", | 31     "//components/os_crypt", | 
| 28     "//components/policy", | 32     "//components/policy", | 
| 29     "//components/pref_registry", | 33     "//components/pref_registry", | 
| 30     "//components/query_parser", | 34     "//components/query_parser", | 
|  | 35     "//components/rappor", | 
| 31     "//components/resources:components_resources", | 36     "//components/resources:components_resources", | 
| 32     "//components/startup_metric_utils", | 37     "//components/startup_metric_utils", | 
| 33     "//components/strings", | 38     "//components/strings", | 
| 34     "//components/tracing", | 39     "//components/tracing", | 
| 35     "//components/translate:translate_core_browser", | 40     "//components/translate/content/browser", | 
| 36     "//components/translate:translate_core_common", | 41     "//components/translate/content/common", | 
|  | 42     "//components/translate/content/renderer", | 
|  | 43     "//components/translate/core/browser", | 
|  | 44     "//components/translate/core/common", | 
| 37     "//components/url_fixer", | 45     "//components/url_fixer", | 
| 38     "//components/url_matcher", | 46     "//components/url_matcher", | 
|  | 47     "//components/usb_service", | 
| 39     "//components/user_prefs", | 48     "//components/user_prefs", | 
| 40     "//components/variations", | 49     "//components/variations", | 
| 41     "//components/visitedlink/browser", | 50     "//components/visitedlink/browser", | 
| 42     "//components/visitedlink/common", | 51     "//components/visitedlink/common", | 
| 43     "//components/visitedlink/renderer",  # Blocked on blink | 52     "//components/visitedlink/renderer", | 
|  | 53     "//components/web_modal", | 
| 44   ] | 54   ] | 
| 45 | 55 | 
| 46   if (is_win || is_mac) { | 56   if (is_win || is_mac) { | 
| 47     deps += [ | 57     deps += [ | 
| 48       "//components/wifi", | 58       "//components/wifi", | 
| 49     ] | 59     ] | 
| 50   } | 60   } | 
| 51 | 61 | 
| 52   if (!is_ios) { | 62   if (!is_ios) { | 
| 53     deps += [ "//components/keyed_service/content" ] | 63     deps += [ "//components/keyed_service/content" ] | 
| 54   } | 64   } | 
| 55 | 65 | 
| 56   if (is_android) { | 66   if (is_android) { | 
| 57     deps -= [ | 67     deps -= [ | 
|  | 68       "//components/autocomplete",  # Should work, needs checking. | 
| 58       "//components/autofill/content/browser",  # Blocked on content/blink. | 69       "//components/autofill/content/browser",  # Blocked on content/blink. | 
| 59       "//components/autofill/content/common",  # Blocked on content. | 70       "//components/autofill/content/common",  # Blocked on content. | 
| 60       "//components/autofill/content/renderer",  # Blocked on content/blink. | 71       "//components/autofill/content/renderer",  # Blocked on content/blink. | 
|  | 72       "//components/captive_portal",  # Should work, needs checking. | 
| 61       "//components/cloud_devices/common",  # Should work, needs checking. | 73       "//components/cloud_devices/common",  # Should work, needs checking. | 
|  | 74       "//components/data_reduction_proxy/browser",  # Should work, needs checkin
    g. | 
|  | 75       "//components/data_reduction_proxy/common",  # Should work, needs checking
    . | 
| 62       "//components/dom_distiller/core",  # Blocked on content. | 76       "//components/dom_distiller/core",  # Blocked on content. | 
| 63       "//components/domain_reliability",  # Blocked on content. | 77       "//components/domain_reliability",  # Blocked on content. | 
| 64       "//components/favicon_base",  # Should work, needs checking. | 78       "//components/favicon_base",  # Should work, needs checking. | 
| 65       "//components/favicon/core",  # Blocked on keyed service. | 79       "//components/favicon/core",  # Blocked on keyed service. | 
| 66       "//components/history/core/browser",  # Should work, needs checking. | 80       "//components/history/core/browser",  # Should work, needs checking. | 
| 67       "//components/history/core/common",  # Should work, needs checking. | 81       "//components/history/core/common",  # Should work, needs checking. | 
| 68       "//components/history/core/test",  # Should work, needs checking. | 82       "//components/history/core/test",  # Should work, needs checking. | 
| 69       "//components/json_schema",  # Should work, needs checking. | 83       "//components/json_schema",  # Should work, needs checking. | 
| 70       "//components/keyed_service/content",  # Blocked on content. | 84       "//components/keyed_service/content",  # Blocked on content. | 
| 71       "//components/policy",  # Blocked on content (indirectly via autofill). | 85       "//components/policy",  # Blocked on content (indirectly via autofill). | 
|  | 86       "//components/rappor",  # Should work, needs checking. | 
|  | 87       "//components/translate/content/browser",  # Blocked on content. | 
|  | 88       "//components/translate/content/common",  # Blocked on content. | 
|  | 89       "//components/translate/content/renderer",  # Blocked on content. | 
|  | 90       "//components/usb_service",  # Blocked on content. | 
| 72       "//components/user_prefs",  # Blocked on content. | 91       "//components/user_prefs",  # Blocked on content. | 
| 73       "//components/visitedlink/browser",  # Blocked on content. | 92       "//components/visitedlink/browser",  # Blocked on content. | 
| 74       "//components/visitedlink/common",  # Blocked on content. | 93       "//components/visitedlink/common",  # Blocked on content. | 
| 75       "//components/visitedlink/renderer",  # Blocked on blink | 94       "//components/visitedlink/renderer",  # Blocked on blink | 
|  | 95       "//components/web_modal",  # Blocked on content. | 
| 76     ] | 96     ] | 
| 77   } | 97   } | 
| 78 } | 98 } | 
| OLD | NEW | 
|---|