Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Side by Side Diff: components/BUILD.gn

Issue 1412093006: components: Add Exosphere component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 "//components/cookie_config", 77 "//components/cookie_config",
78 "//components/crash/content/app", 78 "//components/crash/content/app",
79 "//components/crash/content/browser", 79 "//components/crash/content/browser",
80 "//components/crx_file", 80 "//components/crx_file",
81 "//components/data_reduction_proxy/core/browser", 81 "//components/data_reduction_proxy/core/browser",
82 "//components/data_reduction_proxy/core/common", 82 "//components/data_reduction_proxy/core/common",
83 "//components/device_event_log", 83 "//components/device_event_log",
84 "//components/devtools_discovery", 84 "//components/devtools_discovery",
85 "//components/devtools_http_handler", 85 "//components/devtools_http_handler",
86 "//components/domain_reliability", 86 "//components/domain_reliability",
87 "//components/exo",
88 "//components/exo/wayland",
87 "//components/favicon/core", 89 "//components/favicon/core",
88 "//components/favicon_base", 90 "//components/favicon_base",
89 "//components/feedback", 91 "//components/feedback",
90 "//components/gcm_driver", 92 "//components/gcm_driver",
91 "//components/gcm_driver/crypto", 93 "//components/gcm_driver/crypto",
92 "//components/gcm_driver/instance_id", 94 "//components/gcm_driver/instance_id",
93 "//components/history/content/browser", 95 "//components/history/content/browser",
94 "//components/history/core/browser", 96 "//components/history/core/browser",
95 "//components/history/core/common", 97 "//components/history/core/common",
96 "//components/history/core/test", 98 "//components/history/core/test",
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 if (!is_win && !is_mac) { 212 if (!is_win && !is_mac) {
211 deps -= [ "//components/wifi" ] 213 deps -= [ "//components/wifi" ]
212 } 214 }
213 215
214 if (!is_chromeos) { 216 if (!is_chromeos) {
215 deps -= [ 217 deps -= [
216 "//components/pairing", 218 "//components/pairing",
217 "//components/wifi_sync", 219 "//components/wifi_sync",
218 ] 220 ]
219 } 221 }
222
223 if (!use_ash) {
224 deps -= [ "//components/exo" ]
225 }
226
227 if (!use_ash || !is_linux) {
228 deps -= [ "//components/exo/wayland" ]
229 }
220 } else { 230 } else {
221 deps += [ 231 deps += [
222 "//components/autofill/ios/browser", 232 "//components/autofill/ios/browser",
223 "//components/dom_distiller/ios", 233 "//components/dom_distiller/ios",
224 "//components/webp_transcode", 234 "//components/webp_transcode",
225 ] 235 ]
226 } 236 }
227 237
228 if (toolkit_views) { 238 if (toolkit_views) {
229 deps += [ "//components/constrained_window" ] 239 deps += [ "//components/constrained_window" ]
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 ] 699 ]
690 if (!is_ios) { 700 if (!is_ios) {
691 deps += [ 701 deps += [
692 "//base", 702 "//base",
693 "//base/test:test_support_perf", 703 "//base/test:test_support_perf",
694 "//content/test:test_support", 704 "//content/test:test_support",
695 "//components/visitedlink/browser", 705 "//components/visitedlink/browser",
696 ] 706 ]
697 } 707 }
698 } 708 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698