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

Side by Side Diff: chrome/browser/extensions/BUILD.gn

Issue 1482643002: Exclude some extension apis for Aura Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « no previous file | chrome/browser/extensions/browser_context_keyed_service_factories.cc » ('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 7
8 assert(enable_extensions) 8 assert(enable_extensions)
9 9
10 gypi_values = 10 gypi_values =
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 ".", 205 ".",
206 "//chrome") 206 "//chrome")
207 } 207 }
208 208
209 if (is_chromeos && use_ozone) { 209 if (is_chromeos && use_ozone) {
210 sources -= [ "global_shortcut_listener_chromeos.cc" ] 210 sources -= [ "global_shortcut_listener_chromeos.cc" ]
211 } 211 }
212 if (!use_ozone) { 212 if (!use_ozone) {
213 sources -= [ "global_shortcut_listener_ozone.cc" ] 213 sources -= [ "global_shortcut_listener_ozone.cc" ]
214 } 214 }
215
216 if (is_android) {
217 sources -= [
mfomitchev 2015/11/30 16:17:09 Might be worth creating chrome_browser_extensions_
bshe 2015/11/30 17:00:54 Done.
218 "api/gcd_private/gcd_private_api.cc",
219 "api/gcd_private/gcd_private_api.h",
220 "api/gcd_private/privet_v3_context_getter.cc",
221 "api/gcd_private/privet_v3_context_getter.h",
222 "api/gcd_private/privet_v3_session.cc",
223 "api/gcd_private/privet_v3_session.h",
224 "api/launcher_page/launcher_page_api.cc",
225 "api/launcher_page/launcher_page_api.h",
226 "api/mdns/dns_sd_delegate.cc",
227 "api/mdns/dns_sd_delegate.h",
228 "api/mdns/dns_sd_device_lister.cc",
229 "api/mdns/dns_sd_device_lister.h",
230 "api/mdns/dns_sd_registry.cc",
231 "api/mdns/dns_sd_registry.h",
232 "api/mdns/mdns_api.cc",
233 "api/mdns/mdns_api.h",
234 ]
235 }
215 } 236 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/browser_context_keyed_service_factories.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698