| 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 sources -= [ | 333 sources -= [ |
| 334 "browser_ipc_logging.cc", | 334 "browser_ipc_logging.cc", |
| 335 "device_sensors/data_fetcher_shared_memory_default.cc", | 335 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 336 "geolocation/network_location_provider.cc", | 336 "geolocation/network_location_provider.cc", |
| 337 "geolocation/network_location_provider.h", | 337 "geolocation/network_location_provider.h", |
| 338 "geolocation/network_location_request.cc", | 338 "geolocation/network_location_request.cc", |
| 339 "geolocation/network_location_request.h", | 339 "geolocation/network_location_request.h", |
| 340 "media/session/media_session_delegate_default.cc", | 340 "media/session/media_session_delegate_default.cc", |
| 341 "power_usage_monitor_impl.cc", | 341 "power_usage_monitor_impl.cc", |
| 342 "power_usage_monitor_impl.h", | 342 "power_usage_monitor_impl.h", |
| 343 "renderer_host/begin_frame_observer_proxy.cc", | |
| 344 "tracing/tracing_ui.cc", | 343 "tracing/tracing_ui.cc", |
| 345 "tracing/tracing_ui.h", | 344 "tracing/tracing_ui.h", |
| 346 | 345 |
| 347 # Android skips most, but not all, of the speech code. | 346 # Android skips most, but not all, of the speech code. |
| 348 "speech/audio_buffer.cc", | 347 "speech/audio_buffer.cc", |
| 349 "speech/audio_buffer.h", | 348 "speech/audio_buffer.h", |
| 350 "speech/audio_encoder.cc", | 349 "speech/audio_encoder.cc", |
| 351 "speech/audio_encoder.h", | 350 "speech/audio_encoder.h", |
| 352 "speech/chunked_byte_buffer.cc", | 351 "speech/chunked_byte_buffer.cc", |
| 353 "speech/chunked_byte_buffer.h", | 352 "speech/chunked_byte_buffer.h", |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 | 519 |
| 521 # See comment at the top of //content/BUILD.gn for how this works. | 520 # See comment at the top of //content/BUILD.gn for how this works. |
| 522 group("for_content_tests") { | 521 group("for_content_tests") { |
| 523 visibility = [ "//content/test/*" ] | 522 visibility = [ "//content/test/*" ] |
| 524 if (!is_component_build) { | 523 if (!is_component_build) { |
| 525 public_deps = [ | 524 public_deps = [ |
| 526 ":browser", | 525 ":browser", |
| 527 ] | 526 ] |
| 528 } | 527 } |
| 529 } | 528 } |
| OLD | NEW |