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 | 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 Loading... | |
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 } |
OLD | NEW |