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 = [ |
(...skipping 19 matching lines...) Expand all Loading... |
30 "//components/history/core/test", | 30 "//components/history/core/test", |
31 "//components/json_schema", | 31 "//components/json_schema", |
32 "//components/language_usage_metrics", | 32 "//components/language_usage_metrics", |
33 "//components/leveldb_proto", | 33 "//components/leveldb_proto", |
34 "//components/metrics", | 34 "//components/metrics", |
35 "//components/navigation_metrics", | 35 "//components/navigation_metrics", |
36 "//components/omaha_query_params", | 36 "//components/omaha_query_params", |
37 "//components/onc", | 37 "//components/onc", |
38 "//components/os_crypt", | 38 "//components/os_crypt", |
39 "//components/policy", | 39 "//components/policy", |
| 40 "//components/precache/core", |
| 41 "//components/precache/content", |
40 "//components/pref_registry", | 42 "//components/pref_registry", |
41 "//components/query_parser", | 43 "//components/query_parser", |
42 "//components/rappor", | 44 "//components/rappor", |
43 "//components/resources:components_resources", | 45 "//components/resources:components_resources", |
| 46 "//components/search_engines", |
44 "//components/startup_metric_utils", | 47 "//components/startup_metric_utils", |
45 "//components/strings", | 48 "//components/strings", |
46 "//components/tracing", | 49 "//components/tracing", |
47 "//components/translate/content/browser", | 50 "//components/translate/content/browser", |
48 "//components/translate/content/common", | 51 "//components/translate/content/common", |
49 "//components/translate/content/renderer", | 52 "//components/translate/content/renderer", |
50 "//components/translate/core/browser", | 53 "//components/translate/core/browser", |
51 "//components/translate/core/common", | 54 "//components/translate/core/common", |
52 "//components/url_fixer", | 55 "//components/url_fixer", |
53 "//components/url_matcher", | 56 "//components/url_matcher", |
(...skipping 30 matching lines...) Expand all Loading... |
84 "//components/dom_distiller/core", # Blocked on content. | 87 "//components/dom_distiller/core", # Blocked on content. |
85 "//components/domain_reliability", # Blocked on content. | 88 "//components/domain_reliability", # Blocked on content. |
86 "//components/favicon_base", # Should work, needs checking. | 89 "//components/favicon_base", # Should work, needs checking. |
87 "//components/favicon/core", # Blocked on keyed service. | 90 "//components/favicon/core", # Blocked on keyed service. |
88 "//components/feedback", # Blocked on content. | 91 "//components/feedback", # Blocked on content. |
89 "//components/history/core/browser", # Should work, needs checking. | 92 "//components/history/core/browser", # Should work, needs checking. |
90 "//components/history/core/common", # Should work, needs checking. | 93 "//components/history/core/common", # Should work, needs checking. |
91 "//components/history/core/test", # Should work, needs checking. | 94 "//components/history/core/test", # Should work, needs checking. |
92 "//components/json_schema", # Should work, needs checking. | 95 "//components/json_schema", # Should work, needs checking. |
93 "//components/keyed_service/content", # Blocked on content. | 96 "//components/keyed_service/content", # Blocked on content. |
| 97 "//components/precache/core", # Should work, needs checking. |
| 98 "//components/precache/content", # Blocked on content. |
94 "//components/policy", # Blocked on content (indirectly via autofill). | 99 "//components/policy", # Blocked on content (indirectly via autofill). |
95 "//components/rappor", # Should work, needs checking. | 100 "//components/rappor", # Should work, needs checking. |
| 101 "//components/search_engines", # Should work, needs checking. |
96 "//components/translate/content/browser", # Blocked on content. | 102 "//components/translate/content/browser", # Blocked on content. |
97 "//components/translate/content/common", # Blocked on content. | 103 "//components/translate/content/common", # Blocked on content. |
98 "//components/translate/content/renderer", # Blocked on content. | 104 "//components/translate/content/renderer", # Blocked on content. |
99 "//components/usb_service", # Blocked on content. | 105 "//components/usb_service", # Blocked on content. |
100 "//components/user_prefs", # Blocked on content. | 106 "//components/user_prefs", # Blocked on content. |
101 "//components/visitedlink/browser", # Blocked on content. | 107 "//components/visitedlink/browser", # Blocked on content. |
102 "//components/visitedlink/common", # Blocked on content. | 108 "//components/visitedlink/common", # Blocked on content. |
103 "//components/visitedlink/renderer", # Blocked on blink | 109 "//components/visitedlink/renderer", # Blocked on blink |
104 "//components/web_modal", # Blocked on content. | 110 "//components/web_modal", # Blocked on content. |
105 ] | 111 ] |
106 } | 112 } |
107 | 113 |
108 if (!is_ios && !is_android) { | 114 if (!is_ios && !is_android) { |
109 deps += [ | 115 deps += [ |
110 "//components/storage_monitor", | 116 "//components/storage_monitor", |
111 ] | 117 ] |
112 } | 118 } |
113 } | 119 } |
| 120 |
| 121 # TODO(GYP) components_unittests |
| 122 #test("components_unittests") { |
| 123 ## # Precache tests need these defines. |
| 124 # configs += [ "//components/precache/core:precache_config" ] |
| 125 #} |
OLD | NEW |