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

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: remove some ifdefs 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
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | components/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 "//components/cookie_config", 107 "//components/cookie_config",
108 "//components/crash/content/app", 108 "//components/crash/content/app",
109 "//components/crash/content/browser", 109 "//components/crash/content/browser",
110 "//components/crx_file", 110 "//components/crx_file",
111 "//components/data_reduction_proxy/core/browser", 111 "//components/data_reduction_proxy/core/browser",
112 "//components/data_reduction_proxy/core/common", 112 "//components/data_reduction_proxy/core/common",
113 "//components/device_event_log", 113 "//components/device_event_log",
114 "//components/devtools_discovery", 114 "//components/devtools_discovery",
115 "//components/devtools_http_handler", 115 "//components/devtools_http_handler",
116 "//components/domain_reliability", 116 "//components/domain_reliability",
117 "//components/exo",
118 "//components/exo/wayland",
117 "//components/feedback", 119 "//components/feedback",
118 "//components/gcm_driver/crypto", 120 "//components/gcm_driver/crypto",
119 "//components/gcm_driver/instance_id", 121 "//components/gcm_driver/instance_id",
120 "//components/history/content/browser", 122 "//components/history/content/browser",
121 "//components/json_schema", 123 "//components/json_schema",
122 "//components/keyed_service/content", 124 "//components/keyed_service/content",
123 "//components/language_usage_metrics", 125 "//components/language_usage_metrics",
124 "//components/login", 126 "//components/login",
125 "//components/memory_pressure", 127 "//components/memory_pressure",
126 "//components/metrics_services_manager", 128 "//components/metrics_services_manager",
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 if (!is_chromeos) { 224 if (!is_chromeos) {
223 deps -= [ 225 deps -= [
224 "//components/pairing", 226 "//components/pairing",
225 "//components/wifi_sync", 227 "//components/wifi_sync",
226 ] 228 ]
227 } 229 }
228 230
229 if (is_chromeos && enable_arc) { 231 if (is_chromeos && enable_arc) {
230 deps += [ "//components/arc" ] 232 deps += [ "//components/arc" ]
231 } 233 }
234
235 if (!use_ash) {
236 deps -= [ "//components/exo" ]
237 }
238
239 if (!use_ash || !is_linux) {
240 deps -= [ "//components/exo/wayland" ]
241 }
232 } else { 242 } else {
233 deps += [ 243 deps += [
234 "//components/autofill/ios/browser", 244 "//components/autofill/ios/browser",
235 "//components/dom_distiller/ios", 245 "//components/dom_distiller/ios",
236 "//components/history/ios/browser", 246 "//components/history/ios/browser",
237 "//components/keyed_service/ios", 247 "//components/keyed_service/ios",
238 "//components/signin/ios/browser", 248 "//components/signin/ios/browser",
239 "//components/translate/ios/browser", 249 "//components/translate/ios/browser",
240 "//components/webp_transcode", 250 "//components/webp_transcode",
241 ] 251 ]
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 ] 724 ]
715 if (!is_ios) { 725 if (!is_ios) {
716 deps += [ 726 deps += [
717 "//base", 727 "//base",
718 "//base/test:test_support_perf", 728 "//base/test:test_support_perf",
719 "//content/test:test_support", 729 "//content/test:test_support",
720 "//components/visitedlink/browser", 730 "//components/visitedlink/browser",
721 ] 731 ]
722 } 732 }
723 } 733 }
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | components/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698