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 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 # Collection of all components. You wouldn't link to this, but this is rather | 10 # Collection of all components. You wouldn't link to this, but this is rather |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 "//components/user_prefs", | 103 "//components/user_prefs", |
104 "//components/variations", | 104 "//components/variations", |
105 "//components/visitedlink/browser", | 105 "//components/visitedlink/browser", |
106 "//components/visitedlink/common", | 106 "//components/visitedlink/common", |
107 "//components/visitedlink/renderer", | 107 "//components/visitedlink/renderer", |
108 "//components/wallpaper", | 108 "//components/wallpaper", |
109 "//components/web_cache/browser", | 109 "//components/web_cache/browser", |
110 "//components/web_cache/common", | 110 "//components/web_cache/common", |
111 "//components/web_cache/renderer", | 111 "//components/web_cache/renderer", |
112 "//components/web_modal", | 112 "//components/web_modal", |
| 113 "//components/web_resource", |
113 "//components/webdata/common", | 114 "//components/webdata/common", |
114 "//components/web_resource", | 115 "//components/webui_generator", |
115 "//components/wifi", | 116 "//components/wifi", |
116 "//components/wifi_sync", | 117 "//components/wifi_sync", |
117 ] | 118 ] |
118 | 119 |
119 if (!enable_configuration_policy) { | 120 if (!enable_configuration_policy) { |
120 deps -= [ "//components/policy" ] | 121 deps -= [ "//components/policy" ] |
121 } | 122 } |
122 | 123 |
123 if (!is_win && !is_mac) { | 124 if (!is_win && !is_mac) { |
124 deps -= [ "//components/wifi" ] | 125 deps -= [ "//components/wifi" ] |
125 } | 126 } |
126 if (!is_chromeos) { | 127 if (!is_chromeos) { |
127 deps -= [ | 128 deps -= [ |
128 "//components/pairing", | 129 "//components/pairing", |
129 "//components/wifi_sync", | 130 "//components/wifi_sync", |
130 ] | 131 ] |
131 } | 132 } |
132 if (is_ios) { | 133 if (is_ios) { |
133 deps -= [ | 134 deps -= [ |
134 "//components/history/content/browser", | 135 "//components/history/content/browser", |
135 "//components/keyed_service/content", | 136 "//components/keyed_service/content", |
| 137 "//components/webui_generator", |
136 ] | 138 ] |
137 } | 139 } |
138 | 140 |
139 if (!enable_plugins) { | 141 if (!enable_plugins) { |
140 deps -= [ | 142 deps -= [ |
141 "//components/pdf/browser", | 143 "//components/pdf/browser", |
142 "//components/pdf/common", | 144 "//components/pdf/common", |
143 "//components/pdf/renderer", | 145 "//components/pdf/renderer", |
144 ] | 146 ] |
145 } | 147 } |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 | 300 |
299 output = "$root_out_dir/components_tests_resources.pak" | 301 output = "$root_out_dir/components_tests_resources.pak" |
300 | 302 |
301 deps = [ | 303 deps = [ |
302 "//components/resources", | 304 "//components/resources", |
303 "//components/strings", | 305 "//components/strings", |
304 "//ui/resources", | 306 "//ui/resources", |
305 "//ui/strings", | 307 "//ui/strings", |
306 ] | 308 ] |
307 } | 309 } |
OLD | NEW |