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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
343 content_browser_gypi_values.android_in_process_browser_sources, | 343 content_browser_gypi_values.android_in_process_browser_sources, |
344 ".", | 344 ".", |
345 "//content") | 345 "//content") |
346 sources -= [ | 346 sources -= [ |
347 "browser_ipc_logging.cc", | 347 "browser_ipc_logging.cc", |
348 "device_sensors/data_fetcher_shared_memory_default.cc", | 348 "device_sensors/data_fetcher_shared_memory_default.cc", |
349 "geolocation/network_location_provider.cc", | 349 "geolocation/network_location_provider.cc", |
350 "geolocation/network_location_provider.h", | 350 "geolocation/network_location_provider.h", |
351 "geolocation/network_location_request.cc", | 351 "geolocation/network_location_request.cc", |
352 "geolocation/network_location_request.h", | 352 "geolocation/network_location_request.h", |
353 "media/session/media_session_delegate_default.cc", | |
whywhat
2016/03/01 03:12:10
nit: media_session_delegate_impl.cc?
Seems like th
mlamouri (slow - plz ping)
2016/03/07 19:28:08
I wouldn't say that WMPI/WMPA is a common pattern.
| |
353 "power_usage_monitor_impl.cc", | 354 "power_usage_monitor_impl.cc", |
354 "power_usage_monitor_impl.h", | 355 "power_usage_monitor_impl.h", |
355 "renderer_host/begin_frame_observer_proxy.cc", | 356 "renderer_host/begin_frame_observer_proxy.cc", |
356 "tracing/tracing_ui.cc", | 357 "tracing/tracing_ui.cc", |
357 "tracing/tracing_ui.h", | 358 "tracing/tracing_ui.h", |
358 | 359 |
359 # Android skips most, but not all, of the speech code. | 360 # Android skips most, but not all, of the speech code. |
360 "speech/audio_buffer.cc", | 361 "speech/audio_buffer.cc", |
361 "speech/audio_buffer.h", | 362 "speech/audio_buffer.h", |
362 "speech/audio_encoder.cc", | 363 "speech/audio_encoder.cc", |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
530 | 531 |
531 if (enable_webvr && is_android) { | 532 if (enable_webvr && is_android) { |
532 sources += [ | 533 sources += [ |
533 "vr/android/cardboard/cardboard_vr_device.cc", | 534 "vr/android/cardboard/cardboard_vr_device.cc", |
534 "vr/android/cardboard/cardboard_vr_device.h", | 535 "vr/android/cardboard/cardboard_vr_device.h", |
535 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 536 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
536 "vr/android/cardboard/cardboard_vr_device_provider.h", | 537 "vr/android/cardboard/cardboard_vr_device_provider.h", |
537 ] | 538 ] |
538 } | 539 } |
539 } | 540 } |
OLD | NEW |