| 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 import("//mojo/public/mojo_application_manifest.gni") | 9 import("//mojo/public/mojo_application_manifest.gni") |
| 10 | 10 |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 sources -= [ | 337 sources -= [ |
| 338 "browser_ipc_logging.cc", | 338 "browser_ipc_logging.cc", |
| 339 "device_sensors/data_fetcher_shared_memory_default.cc", | 339 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 340 "geolocation/network_location_provider.cc", | 340 "geolocation/network_location_provider.cc", |
| 341 "geolocation/network_location_provider.h", | 341 "geolocation/network_location_provider.h", |
| 342 "geolocation/network_location_request.cc", | 342 "geolocation/network_location_request.cc", |
| 343 "geolocation/network_location_request.h", | 343 "geolocation/network_location_request.h", |
| 344 "media/session/media_session_delegate_default.cc", | 344 "media/session/media_session_delegate_default.cc", |
| 345 "power_usage_monitor_impl.cc", | 345 "power_usage_monitor_impl.cc", |
| 346 "power_usage_monitor_impl.h", | 346 "power_usage_monitor_impl.h", |
| 347 "renderer_host/begin_frame_observer_proxy.cc", | |
| 348 "tracing/tracing_ui.cc", | 347 "tracing/tracing_ui.cc", |
| 349 "tracing/tracing_ui.h", | 348 "tracing/tracing_ui.h", |
| 350 | 349 |
| 351 # Android skips most, but not all, of the speech code. | 350 # Android skips most, but not all, of the speech code. |
| 352 "speech/audio_buffer.cc", | 351 "speech/audio_buffer.cc", |
| 353 "speech/audio_buffer.h", | 352 "speech/audio_buffer.h", |
| 354 "speech/audio_encoder.cc", | 353 "speech/audio_encoder.cc", |
| 355 "speech/audio_encoder.h", | 354 "speech/audio_encoder.h", |
| 356 "speech/chunked_byte_buffer.cc", | 355 "speech/chunked_byte_buffer.cc", |
| 357 "speech/chunked_byte_buffer.h", | 356 "speech/chunked_byte_buffer.h", |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 type = "exe" | 539 type = "exe" |
| 541 application_name = "chrome" | 540 application_name = "chrome" |
| 542 source = "mojo/chrome_manifest.json" | 541 source = "mojo/chrome_manifest.json" |
| 543 } | 542 } |
| 544 | 543 |
| 545 mojo_application_manifest("chrome_renderer_manifest") { | 544 mojo_application_manifest("chrome_renderer_manifest") { |
| 546 type = "exe" | 545 type = "exe" |
| 547 application_name = "chrome_renderer" | 546 application_name = "chrome_renderer" |
| 548 source = "mojo/chrome_renderer_manifest.json" | 547 source = "mojo/chrome_renderer_manifest.json" |
| 549 } | 548 } |
| OLD | NEW |