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

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

Issue 2319493002: Add mojo interface for audio rendering. (Closed)
Patch Set: ++docs Created 3 years, 10 months 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
« no previous file with comments | « no previous file | content/browser/bad_message.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after
1102 "renderer_host/media/audio_input_device_manager.h", 1102 "renderer_host/media/audio_input_device_manager.h",
1103 "renderer_host/media/audio_input_renderer_host.cc", 1103 "renderer_host/media/audio_input_renderer_host.cc",
1104 "renderer_host/media/audio_input_renderer_host.h", 1104 "renderer_host/media/audio_input_renderer_host.h",
1105 "renderer_host/media/audio_input_sync_writer.cc", 1105 "renderer_host/media/audio_input_sync_writer.cc",
1106 "renderer_host/media/audio_input_sync_writer.h", 1106 "renderer_host/media/audio_input_sync_writer.h",
1107 "renderer_host/media/audio_output_authorization_handler.cc", 1107 "renderer_host/media/audio_output_authorization_handler.cc",
1108 "renderer_host/media/audio_output_authorization_handler.h", 1108 "renderer_host/media/audio_output_authorization_handler.h",
1109 "renderer_host/media/audio_output_delegate.h", 1109 "renderer_host/media/audio_output_delegate.h",
1110 "renderer_host/media/audio_output_delegate_impl.cc", 1110 "renderer_host/media/audio_output_delegate_impl.cc",
1111 "renderer_host/media/audio_output_delegate_impl.h", 1111 "renderer_host/media/audio_output_delegate_impl.h",
1112 "renderer_host/media/audio_output_impl.cc",
1113 "renderer_host/media/audio_output_impl.h",
1114 "renderer_host/media/audio_output_service_context.h",
1115 "renderer_host/media/audio_output_service_context_impl.cc",
1116 "renderer_host/media/audio_output_service_context_impl.h",
1112 "renderer_host/media/audio_renderer_host.cc", 1117 "renderer_host/media/audio_renderer_host.cc",
1113 "renderer_host/media/audio_renderer_host.h", 1118 "renderer_host/media/audio_renderer_host.h",
1114 "renderer_host/media/audio_sync_reader.cc", 1119 "renderer_host/media/audio_sync_reader.cc",
1115 "renderer_host/media/audio_sync_reader.h", 1120 "renderer_host/media/audio_sync_reader.h",
1116 "renderer_host/media/media_capture_devices_impl.cc", 1121 "renderer_host/media/media_capture_devices_impl.cc",
1117 "renderer_host/media/media_capture_devices_impl.h", 1122 "renderer_host/media/media_capture_devices_impl.h",
1118 "renderer_host/media/media_devices_dispatcher_host.cc", 1123 "renderer_host/media/media_devices_dispatcher_host.cc",
1119 "renderer_host/media/media_devices_dispatcher_host.h", 1124 "renderer_host/media/media_devices_dispatcher_host.h",
1120 "renderer_host/media/media_devices_manager.cc", 1125 "renderer_host/media/media_devices_manager.cc",
1121 "renderer_host/media/media_devices_manager.h", 1126 "renderer_host/media/media_devices_manager.h",
1122 "renderer_host/media/media_stream_dispatcher_host.cc", 1127 "renderer_host/media/media_stream_dispatcher_host.cc",
1123 "renderer_host/media/media_stream_dispatcher_host.h", 1128 "renderer_host/media/media_stream_dispatcher_host.h",
1124 "renderer_host/media/media_stream_manager.cc", 1129 "renderer_host/media/media_stream_manager.cc",
1125 "renderer_host/media/media_stream_manager.h", 1130 "renderer_host/media/media_stream_manager.h",
1126 "renderer_host/media/media_stream_provider.h", 1131 "renderer_host/media/media_stream_provider.h",
1127 "renderer_host/media/media_stream_requester.h", 1132 "renderer_host/media/media_stream_requester.h",
1128 "renderer_host/media/media_stream_track_metrics_host.cc", 1133 "renderer_host/media/media_stream_track_metrics_host.cc",
1129 "renderer_host/media/media_stream_track_metrics_host.h", 1134 "renderer_host/media/media_stream_track_metrics_host.h",
1130 "renderer_host/media/media_stream_ui_proxy.cc", 1135 "renderer_host/media/media_stream_ui_proxy.cc",
1131 "renderer_host/media/media_stream_ui_proxy.h", 1136 "renderer_host/media/media_stream_ui_proxy.h",
1137 "renderer_host/media/render_frame_audio_output_service.cc",
1138 "renderer_host/media/render_frame_audio_output_service.h",
1132 "renderer_host/media/video_capture_controller.cc", 1139 "renderer_host/media/video_capture_controller.cc",
1133 "renderer_host/media/video_capture_controller.h", 1140 "renderer_host/media/video_capture_controller.h",
1134 "renderer_host/media/video_capture_controller_event_handler.h", 1141 "renderer_host/media/video_capture_controller_event_handler.h",
1135 "renderer_host/media/video_capture_gpu_jpeg_decoder.cc", 1142 "renderer_host/media/video_capture_gpu_jpeg_decoder.cc",
1136 "renderer_host/media/video_capture_gpu_jpeg_decoder.h", 1143 "renderer_host/media/video_capture_gpu_jpeg_decoder.h",
1137 "renderer_host/media/video_capture_host.cc", 1144 "renderer_host/media/video_capture_host.cc",
1138 "renderer_host/media/video_capture_host.h", 1145 "renderer_host/media/video_capture_host.h",
1139 "renderer_host/media/video_capture_manager.cc", 1146 "renderer_host/media/video_capture_manager.cc",
1140 "renderer_host/media/video_capture_manager.h", 1147 "renderer_host/media/video_capture_manager.h",
1141 "renderer_host/media/video_frame_receiver_on_io_thread.cc", 1148 "renderer_host/media/video_frame_receiver_on_io_thread.cc",
(...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after
2007 if (!is_component_build) { 2014 if (!is_component_build) {
2008 public_deps = [ 2015 public_deps = [
2009 ":browser", 2016 ":browser",
2010 ] 2017 ]
2011 } else { 2018 } else {
2012 public_deps = [ 2019 public_deps = [
2013 "//third_party/leveldatabase", 2020 "//third_party/leveldatabase",
2014 ] 2021 ]
2015 } 2022 }
2016 } 2023 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/bad_message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698