Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: content/browser/BUILD.gn

Issue 2443573003: Factor out AudioOutputDelegate from AudioRendererHost. (Closed)
Patch Set: Mac compile. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//ppapi/features/features.gni") 8 import("//ppapi/features/features.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/WebKit/public/public_features.gni") 10 import("//third_party/WebKit/public/public_features.gni")
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 "appcache/appcache_storage_impl.cc", 286 "appcache/appcache_storage_impl.cc",
287 "appcache/appcache_storage_impl.h", 287 "appcache/appcache_storage_impl.h",
288 "appcache/appcache_update_job.cc", 288 "appcache/appcache_update_job.cc",
289 "appcache/appcache_update_job.h", 289 "appcache/appcache_update_job.h",
290 "appcache/appcache_url_request_job.cc", 290 "appcache/appcache_url_request_job.cc",
291 "appcache/appcache_url_request_job.h", 291 "appcache/appcache_url_request_job.h",
292 "appcache/appcache_working_set.cc", 292 "appcache/appcache_working_set.cc",
293 "appcache/appcache_working_set.h", 293 "appcache/appcache_working_set.h",
294 "appcache/chrome_appcache_service.cc", 294 "appcache/chrome_appcache_service.cc",
295 "appcache/chrome_appcache_service.h", 295 "appcache/chrome_appcache_service.h",
296 "audio_device_thread.cc",
297 "audio_device_thread.h",
296 "background_sync/background_sync_context.cc", 298 "background_sync/background_sync_context.cc",
297 "background_sync/background_sync_context.h", 299 "background_sync/background_sync_context.h",
298 "background_sync/background_sync_manager.cc", 300 "background_sync/background_sync_manager.cc",
299 "background_sync/background_sync_manager.h", 301 "background_sync/background_sync_manager.h",
300 "background_sync/background_sync_metrics.cc", 302 "background_sync/background_sync_metrics.cc",
301 "background_sync/background_sync_metrics.h", 303 "background_sync/background_sync_metrics.h",
302 "background_sync/background_sync_network_observer.cc", 304 "background_sync/background_sync_network_observer.cc",
303 "background_sync/background_sync_network_observer.h", 305 "background_sync/background_sync_network_observer.h",
304 "background_sync/background_sync_registration.cc", 306 "background_sync/background_sync_registration.cc",
305 "background_sync/background_sync_registration.h", 307 "background_sync/background_sync_registration.h",
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after
1080 "renderer_host/media/audio_input_debug_writer.cc", 1082 "renderer_host/media/audio_input_debug_writer.cc",
1081 "renderer_host/media/audio_input_debug_writer.h", 1083 "renderer_host/media/audio_input_debug_writer.h",
1082 "renderer_host/media/audio_input_device_manager.cc", 1084 "renderer_host/media/audio_input_device_manager.cc",
1083 "renderer_host/media/audio_input_device_manager.h", 1085 "renderer_host/media/audio_input_device_manager.h",
1084 "renderer_host/media/audio_input_renderer_host.cc", 1086 "renderer_host/media/audio_input_renderer_host.cc",
1085 "renderer_host/media/audio_input_renderer_host.h", 1087 "renderer_host/media/audio_input_renderer_host.h",
1086 "renderer_host/media/audio_input_sync_writer.cc", 1088 "renderer_host/media/audio_input_sync_writer.cc",
1087 "renderer_host/media/audio_input_sync_writer.h", 1089 "renderer_host/media/audio_input_sync_writer.h",
1088 "renderer_host/media/audio_output_authorization_handler.cc", 1090 "renderer_host/media/audio_output_authorization_handler.cc",
1089 "renderer_host/media/audio_output_authorization_handler.h", 1091 "renderer_host/media/audio_output_authorization_handler.h",
1092 "renderer_host/media/audio_output_delegate.cc",
1093 "renderer_host/media/audio_output_delegate.h",
1090 "renderer_host/media/audio_renderer_host.cc", 1094 "renderer_host/media/audio_renderer_host.cc",
1091 "renderer_host/media/audio_renderer_host.h", 1095 "renderer_host/media/audio_renderer_host.h",
1092 "renderer_host/media/audio_sync_reader.cc", 1096 "renderer_host/media/audio_sync_reader.cc",
1093 "renderer_host/media/audio_sync_reader.h", 1097 "renderer_host/media/audio_sync_reader.h",
1094 "renderer_host/media/media_capture_devices_impl.cc", 1098 "renderer_host/media/media_capture_devices_impl.cc",
1095 "renderer_host/media/media_capture_devices_impl.h", 1099 "renderer_host/media/media_capture_devices_impl.h",
1096 "renderer_host/media/media_devices_dispatcher_host.cc", 1100 "renderer_host/media/media_devices_dispatcher_host.cc",
1097 "renderer_host/media/media_devices_dispatcher_host.h", 1101 "renderer_host/media/media_devices_dispatcher_host.h",
1098 "renderer_host/media/media_devices_manager.cc", 1102 "renderer_host/media/media_devices_manager.cc",
1099 "renderer_host/media/media_devices_manager.h", 1103 "renderer_host/media/media_devices_manager.h",
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after
1975 if (!is_component_build) { 1979 if (!is_component_build) {
1976 public_deps = [ 1980 public_deps = [
1977 ":browser", 1981 ":browser",
1978 ] 1982 ]
1979 } else { 1983 } else {
1980 public_deps = [ 1984 public_deps = [
1981 "//third_party/leveldatabase", 1985 "//third_party/leveldatabase",
1982 ] 1986 ]
1983 } 1987 }
1984 } 1988 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/audio_device_thread.h » ('j') | content/browser/audio_device_thread.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698