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 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 | 9 |
10 source_set("browser") { | 10 source_set("browser") { |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 content_browser_gypi_values.android_in_process_browser_sources, | 348 content_browser_gypi_values.android_in_process_browser_sources, |
349 ".", | 349 ".", |
350 "//content") | 350 "//content") |
351 sources -= [ | 351 sources -= [ |
352 "browser_ipc_logging.cc", | 352 "browser_ipc_logging.cc", |
353 "device_sensors/data_fetcher_shared_memory_default.cc", | 353 "device_sensors/data_fetcher_shared_memory_default.cc", |
354 "geolocation/network_location_provider.cc", | 354 "geolocation/network_location_provider.cc", |
355 "geolocation/network_location_provider.h", | 355 "geolocation/network_location_provider.h", |
356 "geolocation/network_location_request.cc", | 356 "geolocation/network_location_request.cc", |
357 "geolocation/network_location_request.h", | 357 "geolocation/network_location_request.h", |
| 358 "media/session/media_session_delegate_default.cc", |
358 "power_usage_monitor_impl.cc", | 359 "power_usage_monitor_impl.cc", |
359 "power_usage_monitor_impl.h", | 360 "power_usage_monitor_impl.h", |
360 "renderer_host/begin_frame_observer_proxy.cc", | 361 "renderer_host/begin_frame_observer_proxy.cc", |
361 "tracing/tracing_ui.cc", | 362 "tracing/tracing_ui.cc", |
362 "tracing/tracing_ui.h", | 363 "tracing/tracing_ui.h", |
363 | 364 |
364 # Android skips most, but not all, of the speech code. | 365 # Android skips most, but not all, of the speech code. |
365 "speech/audio_buffer.cc", | 366 "speech/audio_buffer.cc", |
366 "speech/audio_buffer.h", | 367 "speech/audio_buffer.h", |
367 "speech/audio_encoder.cc", | 368 "speech/audio_encoder.cc", |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 | 543 |
543 if (enable_webvr && is_android) { | 544 if (enable_webvr && is_android) { |
544 sources += [ | 545 sources += [ |
545 "vr/android/cardboard/cardboard_vr_device.cc", | 546 "vr/android/cardboard/cardboard_vr_device.cc", |
546 "vr/android/cardboard/cardboard_vr_device.h", | 547 "vr/android/cardboard/cardboard_vr_device.h", |
547 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 548 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
548 "vr/android/cardboard/cardboard_vr_device_provider.h", | 549 "vr/android/cardboard/cardboard_vr_device_provider.h", |
549 ] | 550 ] |
550 } | 551 } |
551 } | 552 } |
OLD | NEW |