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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 "//components/crash/content/app", | 66 "//components/crash/content/app", |
67 "//components/crash/content/browser", | 67 "//components/crash/content/browser", |
68 "//components/crx_file", | 68 "//components/crx_file", |
69 "//components/data_reduction_proxy/core/browser", | 69 "//components/data_reduction_proxy/core/browser", |
70 "//components/data_reduction_proxy/core/common", | 70 "//components/data_reduction_proxy/core/common", |
71 "//components/device_event_log", | 71 "//components/device_event_log", |
72 "//components/devtools_discovery", | 72 "//components/devtools_discovery", |
73 "//components/devtools_http_handler", | 73 "//components/devtools_http_handler", |
74 "//components/dom_distiller/core", | 74 "//components/dom_distiller/core", |
75 "//components/domain_reliability", | 75 "//components/domain_reliability", |
| 76 "//components/exo", |
| 77 "//components/exo/wayland", |
76 "//components/favicon/core", | 78 "//components/favicon/core", |
77 "//components/favicon_base", | 79 "//components/favicon_base", |
78 "//components/feedback", | 80 "//components/feedback", |
79 "//components/gcm_driver", | 81 "//components/gcm_driver", |
80 "//components/gcm_driver/crypto", | 82 "//components/gcm_driver/crypto", |
81 "//components/gcm_driver/instance_id", | 83 "//components/gcm_driver/instance_id", |
82 "//components/history/content/browser", | 84 "//components/history/content/browser", |
83 "//components/history/core/browser", | 85 "//components/history/core/browser", |
84 "//components/history/core/common", | 86 "//components/history/core/common", |
85 "//components/history/core/test", | 87 "//components/history/core/test", |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 if (!is_win && !is_mac) { | 204 if (!is_win && !is_mac) { |
203 deps -= [ "//components/wifi" ] | 205 deps -= [ "//components/wifi" ] |
204 } | 206 } |
205 | 207 |
206 if (!is_chromeos) { | 208 if (!is_chromeos) { |
207 deps -= [ | 209 deps -= [ |
208 "//components/pairing", | 210 "//components/pairing", |
209 "//components/wifi_sync", | 211 "//components/wifi_sync", |
210 ] | 212 ] |
211 } | 213 } |
| 214 |
| 215 if (!use_ash) { |
| 216 deps -= [ "//components/exo" ] |
| 217 } |
| 218 |
| 219 if (!use_ash || !is_linux) { |
| 220 deps -= [ "//components/exo/wayland" ] |
| 221 } |
212 } | 222 } |
213 | 223 |
214 if (toolkit_views) { | 224 if (toolkit_views) { |
215 deps += [ "//components/constrained_window" ] | 225 deps += [ "//components/constrained_window" ] |
216 } | 226 } |
217 | 227 |
218 if (is_android) { | 228 if (is_android) { |
219 deps -= [ | 229 deps -= [ |
220 "//components/autofill/content/browser", # Blocked on content/blink. | 230 "//components/autofill/content/browser", # Blocked on content/blink. |
221 "//components/autofill/content/common", # Blocked on content. | 231 "//components/autofill/content/common", # Blocked on content. |
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 ] | 636 ] |
627 if (!is_ios) { | 637 if (!is_ios) { |
628 deps += [ | 638 deps += [ |
629 "//base", | 639 "//base", |
630 "//base/test:test_support_perf", | 640 "//base/test:test_support_perf", |
631 "//content/test:test_support", | 641 "//content/test:test_support", |
632 "//components/visitedlink/browser", | 642 "//components/visitedlink/browser", |
633 ] | 643 ] |
634 } | 644 } |
635 } | 645 } |
OLD | NEW |