| 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 if (is_android) { | 10 if (is_android) { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "//components/cookie_config", | 83 "//components/cookie_config", |
| 84 "//components/crash/content/app", | 84 "//components/crash/content/app", |
| 85 "//components/crash/content/browser", | 85 "//components/crash/content/browser", |
| 86 "//components/crx_file", | 86 "//components/crx_file", |
| 87 "//components/data_reduction_proxy/core/browser", | 87 "//components/data_reduction_proxy/core/browser", |
| 88 "//components/data_reduction_proxy/core/common", | 88 "//components/data_reduction_proxy/core/common", |
| 89 "//components/device_event_log", | 89 "//components/device_event_log", |
| 90 "//components/devtools_discovery", | 90 "//components/devtools_discovery", |
| 91 "//components/devtools_http_handler", | 91 "//components/devtools_http_handler", |
| 92 "//components/domain_reliability", | 92 "//components/domain_reliability", |
| 93 "//components/exo", |
| 94 "//components/exo/wayland", |
| 93 "//components/favicon/core", | 95 "//components/favicon/core", |
| 94 "//components/favicon_base", | 96 "//components/favicon_base", |
| 95 "//components/feedback", | 97 "//components/feedback", |
| 96 "//components/gcm_driver", | 98 "//components/gcm_driver", |
| 97 "//components/gcm_driver/crypto", | 99 "//components/gcm_driver/crypto", |
| 98 "//components/gcm_driver/instance_id", | 100 "//components/gcm_driver/instance_id", |
| 99 "//components/history/content/browser", | 101 "//components/history/content/browser", |
| 100 "//components/invalidation/impl", | 102 "//components/invalidation/impl", |
| 101 "//components/json_schema", | 103 "//components/json_schema", |
| 102 "//components/keyed_service/content", | 104 "//components/keyed_service/content", |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 if (!is_chromeos) { | 217 if (!is_chromeos) { |
| 216 deps -= [ | 218 deps -= [ |
| 217 "//components/pairing", | 219 "//components/pairing", |
| 218 "//components/wifi_sync", | 220 "//components/wifi_sync", |
| 219 ] | 221 ] |
| 220 } | 222 } |
| 221 | 223 |
| 222 if (is_chromeos && enable_arc) { | 224 if (is_chromeos && enable_arc) { |
| 223 deps += [ "//components/arc" ] | 225 deps += [ "//components/arc" ] |
| 224 } | 226 } |
| 227 |
| 228 if (!use_ash) { |
| 229 deps -= [ "//components/exo" ] |
| 230 } |
| 231 |
| 232 if (!use_ash || !is_linux) { |
| 233 deps -= [ "//components/exo/wayland" ] |
| 234 } |
| 225 } else { | 235 } else { |
| 226 deps += [ | 236 deps += [ |
| 227 "//components/autofill/ios/browser", | 237 "//components/autofill/ios/browser", |
| 228 "//components/dom_distiller/ios", | 238 "//components/dom_distiller/ios", |
| 229 "//components/history/ios/browser", | 239 "//components/history/ios/browser", |
| 230 "//components/keyed_service/ios", | 240 "//components/keyed_service/ios", |
| 231 "//components/translate/ios/browser", | 241 "//components/translate/ios/browser", |
| 232 "//components/webp_transcode", | 242 "//components/webp_transcode", |
| 233 ] | 243 ] |
| 234 } | 244 } |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 ] | 714 ] |
| 705 if (!is_ios) { | 715 if (!is_ios) { |
| 706 deps += [ | 716 deps += [ |
| 707 "//base", | 717 "//base", |
| 708 "//base/test:test_support_perf", | 718 "//base/test:test_support_perf", |
| 709 "//content/test:test_support", | 719 "//content/test:test_support", |
| 710 "//components/visitedlink/browser", | 720 "//components/visitedlink/browser", |
| 711 ] | 721 ] |
| 712 } | 722 } |
| 713 } | 723 } |
| OLD | NEW |