| 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("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
| 8 | 8 |
| 9 config("storage_config") { | 9 config("storage_config") { |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 } | 266 } |
| 267 | 267 |
| 268 if (is_android) { | 268 if (is_android) { |
| 269 sources += rebase_path(content_browser_gypi_values.android_browser_sources, | 269 sources += rebase_path(content_browser_gypi_values.android_browser_sources, |
| 270 ".", "//content") | 270 ".", "//content") |
| 271 sources -= [ | 271 sources -= [ |
| 272 "battery_status/battery_status_manager_default.cc", | 272 "battery_status/battery_status_manager_default.cc", |
| 273 "browser_ipc_logging.cc", | 273 "browser_ipc_logging.cc", |
| 274 "device_sensors/data_fetcher_shared_memory_default.cc", | 274 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 275 "font_list_async.cc", | 275 "font_list_async.cc", |
| 276 "geolocation/device_data_provider.cc", | |
| 277 "geolocation/empty_device_data_provider.cc", | |
| 278 "geolocation/network_location_provider.cc", | 276 "geolocation/network_location_provider.cc", |
| 279 "geolocation/network_location_provider.h", | 277 "geolocation/network_location_provider.h", |
| 280 "geolocation/network_location_request.cc", | 278 "geolocation/network_location_request.cc", |
| 281 "geolocation/network_location_request.h", | 279 "geolocation/network_location_request.h", |
| 282 "geolocation/wifi_data_provider_common.cc", | 280 "geolocation/wifi_data_provider_common.cc", |
| 283 "renderer_host/native_web_keyboard_event.cc", | 281 "renderer_host/native_web_keyboard_event.cc", |
| 284 "tracing/tracing_ui.cc", | 282 "tracing/tracing_ui.cc", |
| 285 "tracing/tracing_ui.h", | 283 "tracing/tracing_ui.h", |
| 286 | 284 |
| 287 # Android skips most, but not all, of the speech code. | 285 # Android skips most, but not all, of the speech code. |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 sources -= [ | 388 sources -= [ |
| 391 "geolocation/empty_wifi_data_provider.cc", | 389 "geolocation/empty_wifi_data_provider.cc", |
| 392 ] | 390 ] |
| 393 deps += [ "//dbus" ] | 391 deps += [ "//dbus" ] |
| 394 } else { | 392 } else { |
| 395 # This will already have gotten removed for all non-Linux cases. | 393 # This will already have gotten removed for all non-Linux cases. |
| 396 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 394 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
| 397 } | 395 } |
| 398 } | 396 } |
| 399 } | 397 } |
| OLD | NEW |