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