| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//content/browser/browser.gni") | 8 import("//content/browser/browser.gni") |
| 9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 | 10 |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 sources += rebase_path(content_browser_gypi_values.android_browser_sources, | 315 sources += rebase_path(content_browser_gypi_values.android_browser_sources, |
| 316 ".", | 316 ".", |
| 317 "//content") | 317 "//content") |
| 318 sources -= [ | 318 sources -= [ |
| 319 "browser_ipc_logging.cc", | 319 "browser_ipc_logging.cc", |
| 320 "device_sensors/data_fetcher_shared_memory_default.cc", | 320 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 321 "geolocation/network_location_provider.cc", | 321 "geolocation/network_location_provider.cc", |
| 322 "geolocation/network_location_provider.h", | 322 "geolocation/network_location_provider.h", |
| 323 "geolocation/network_location_request.cc", | 323 "geolocation/network_location_request.cc", |
| 324 "geolocation/network_location_request.h", | 324 "geolocation/network_location_request.h", |
| 325 "renderer_host/begin_frame_observer_proxy.cc", |
| 325 "tracing/tracing_ui.cc", | 326 "tracing/tracing_ui.cc", |
| 326 "tracing/tracing_ui.h", | 327 "tracing/tracing_ui.h", |
| 327 | 328 |
| 328 # Android skips most, but not all, of the speech code. | 329 # Android skips most, but not all, of the speech code. |
| 329 "speech/audio_buffer.cc", | 330 "speech/audio_buffer.cc", |
| 330 "speech/audio_buffer.h", | 331 "speech/audio_buffer.h", |
| 331 "speech/audio_encoder.cc", | 332 "speech/audio_encoder.cc", |
| 332 "speech/audio_encoder.h", | 333 "speech/audio_encoder.h", |
| 333 "speech/chunked_byte_buffer.cc", | 334 "speech/chunked_byte_buffer.cc", |
| 334 "speech/chunked_byte_buffer.h", | 335 "speech/chunked_byte_buffer.h", |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 } | 454 } |
| 454 | 455 |
| 455 if (is_linux && use_openssl) { | 456 if (is_linux && use_openssl) { |
| 456 deps += [ "//third_party/boringssl" ] | 457 deps += [ "//third_party/boringssl" ] |
| 457 } | 458 } |
| 458 | 459 |
| 459 if (enable_media_mojo_renderer) { | 460 if (enable_media_mojo_renderer) { |
| 460 deps += [ "//media/mojo/services:renderer_service" ] | 461 deps += [ "//media/mojo/services:renderer_service" ] |
| 461 } | 462 } |
| 462 } | 463 } |
| OLD | NEW |