| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "//components/crash/content/app", | 73 "//components/crash/content/app", |
| 74 "//components/crash/content/browser", | 74 "//components/crash/content/browser", |
| 75 "//components/crx_file", | 75 "//components/crx_file", |
| 76 "//components/data_reduction_proxy/core/browser", | 76 "//components/data_reduction_proxy/core/browser", |
| 77 "//components/data_reduction_proxy/core/common", | 77 "//components/data_reduction_proxy/core/common", |
| 78 "//components/device_event_log", | 78 "//components/device_event_log", |
| 79 "//components/devtools_discovery", | 79 "//components/devtools_discovery", |
| 80 "//components/devtools_http_handler", | 80 "//components/devtools_http_handler", |
| 81 "//components/dom_distiller/core", | 81 "//components/dom_distiller/core", |
| 82 "//components/domain_reliability", | 82 "//components/domain_reliability", |
| 83 "//components/exo", |
| 84 "//components/exo/wayland", |
| 83 "//components/favicon/core", | 85 "//components/favicon/core", |
| 84 "//components/favicon_base", | 86 "//components/favicon_base", |
| 85 "//components/feedback", | 87 "//components/feedback", |
| 86 "//components/gcm_driver", | 88 "//components/gcm_driver", |
| 87 "//components/gcm_driver/crypto", | 89 "//components/gcm_driver/crypto", |
| 88 "//components/gcm_driver/instance_id", | 90 "//components/gcm_driver/instance_id", |
| 89 "//components/history/content/browser", | 91 "//components/history/content/browser", |
| 90 "//components/history/core/browser", | 92 "//components/history/core/browser", |
| 91 "//components/history/core/common", | 93 "//components/history/core/common", |
| 92 "//components/history/core/test", | 94 "//components/history/core/test", |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 if (!is_win && !is_mac) { | 209 if (!is_win && !is_mac) { |
| 208 deps -= [ "//components/wifi" ] | 210 deps -= [ "//components/wifi" ] |
| 209 } | 211 } |
| 210 | 212 |
| 211 if (!is_chromeos) { | 213 if (!is_chromeos) { |
| 212 deps -= [ | 214 deps -= [ |
| 213 "//components/pairing", | 215 "//components/pairing", |
| 214 "//components/wifi_sync", | 216 "//components/wifi_sync", |
| 215 ] | 217 ] |
| 216 } | 218 } |
| 219 |
| 220 if (!use_ash) { |
| 221 deps -= [ "//components/exo" ] |
| 222 } |
| 223 |
| 224 if (!use_ash || !is_linux) { |
| 225 deps -= [ "//components/exo/wayland" ] |
| 226 } |
| 217 } | 227 } |
| 218 | 228 |
| 219 if (toolkit_views) { | 229 if (toolkit_views) { |
| 220 deps += [ "//components/constrained_window" ] | 230 deps += [ "//components/constrained_window" ] |
| 221 } | 231 } |
| 222 | 232 |
| 223 if (is_android) { | 233 if (is_android) { |
| 224 deps -= [ | 234 deps -= [ |
| 225 "//components/autofill/content/browser", # Blocked on content/blink. | 235 "//components/autofill/content/browser", # Blocked on content/blink. |
| 226 "//components/autofill/content/common", # Blocked on content. | 236 "//components/autofill/content/common", # Blocked on content. |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 ] | 690 ] |
| 681 if (!is_ios) { | 691 if (!is_ios) { |
| 682 deps += [ | 692 deps += [ |
| 683 "//base", | 693 "//base", |
| 684 "//base/test:test_support_perf", | 694 "//base/test:test_support_perf", |
| 685 "//content/test:test_support", | 695 "//content/test:test_support", |
| 686 "//components/visitedlink/browser", | 696 "//components/visitedlink/browser", |
| 687 ] | 697 ] |
| 688 } | 698 } |
| 689 } | 699 } |
| OLD | NEW |