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

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

Issue 2697663003: Add mojo interface+impl creation of audio streams. (Closed)
Patch Set: Created 3 years, 9 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
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("//gpu/vulkan/features.gni") 7 import("//gpu/vulkan/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//printing/features/features.gni") 10 import("//printing/features/features.gni")
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "//gpu/ipc/host", 89 "//gpu/ipc/host",
90 "//gpu/vulkan:features", 90 "//gpu/vulkan:features",
91 "//ipc", 91 "//ipc",
92 "//media", 92 "//media",
93 "//media/capture", 93 "//media/capture",
94 "//media/capture/mojo:image_capture", 94 "//media/capture/mojo:image_capture",
95 "//media/gpu/ipc/client", 95 "//media/gpu/ipc/client",
96 "//media/midi", 96 "//media/midi",
97 "//media/midi:mojo", 97 "//media/midi:mojo",
98 "//media/mojo/interfaces", 98 "//media/mojo/interfaces",
99 "//media/mojo/services",
99 "//mojo/common", 100 "//mojo/common",
100 "//mojo/edk/system", 101 "//mojo/edk/system",
101 "//mojo/public/cpp/bindings", 102 "//mojo/public/cpp/bindings",
102 "//mojo/public/js", 103 "//mojo/public/js",
103 "//net", 104 "//net",
104 "//net:extras", 105 "//net:extras",
105 "//net:http_server", 106 "//net:http_server",
106 "//ppapi/features", 107 "//ppapi/features",
107 "//printing/features", 108 "//printing/features",
108 "//services/catalog:constants", 109 "//services/catalog:constants",
(...skipping 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 "renderer_host/media/audio_input_device_manager.cc", 1141 "renderer_host/media/audio_input_device_manager.cc",
1141 "renderer_host/media/audio_input_device_manager.h", 1142 "renderer_host/media/audio_input_device_manager.h",
1142 "renderer_host/media/audio_input_renderer_host.cc", 1143 "renderer_host/media/audio_input_renderer_host.cc",
1143 "renderer_host/media/audio_input_renderer_host.h", 1144 "renderer_host/media/audio_input_renderer_host.h",
1144 "renderer_host/media/audio_input_sync_writer.cc", 1145 "renderer_host/media/audio_input_sync_writer.cc",
1145 "renderer_host/media/audio_input_sync_writer.h", 1146 "renderer_host/media/audio_input_sync_writer.h",
1146 "renderer_host/media/audio_output_authorization_handler.cc", 1147 "renderer_host/media/audio_output_authorization_handler.cc",
1147 "renderer_host/media/audio_output_authorization_handler.h", 1148 "renderer_host/media/audio_output_authorization_handler.h",
1148 "renderer_host/media/audio_output_delegate_impl.cc", 1149 "renderer_host/media/audio_output_delegate_impl.cc",
1149 "renderer_host/media/audio_output_delegate_impl.h", 1150 "renderer_host/media/audio_output_delegate_impl.h",
1151 "renderer_host/media/audio_output_stream_factory_context.h",
1152 "renderer_host/media/audio_output_stream_factory_context_impl.cc",
1153 "renderer_host/media/audio_output_stream_factory_context_impl.h",
1150 "renderer_host/media/audio_renderer_host.cc", 1154 "renderer_host/media/audio_renderer_host.cc",
1151 "renderer_host/media/audio_renderer_host.h", 1155 "renderer_host/media/audio_renderer_host.h",
1152 "renderer_host/media/audio_sync_reader.cc", 1156 "renderer_host/media/audio_sync_reader.cc",
1153 "renderer_host/media/audio_sync_reader.h", 1157 "renderer_host/media/audio_sync_reader.h",
1154 "renderer_host/media/media_capture_devices_impl.cc", 1158 "renderer_host/media/media_capture_devices_impl.cc",
1155 "renderer_host/media/media_capture_devices_impl.h", 1159 "renderer_host/media/media_capture_devices_impl.h",
1156 "renderer_host/media/media_devices_dispatcher_host.cc", 1160 "renderer_host/media/media_devices_dispatcher_host.cc",
1157 "renderer_host/media/media_devices_dispatcher_host.h", 1161 "renderer_host/media/media_devices_dispatcher_host.h",
1158 "renderer_host/media/media_devices_manager.cc", 1162 "renderer_host/media/media_devices_manager.cc",
1159 "renderer_host/media/media_devices_manager.h", 1163 "renderer_host/media/media_devices_manager.h",
1160 "renderer_host/media/media_stream_dispatcher_host.cc", 1164 "renderer_host/media/media_stream_dispatcher_host.cc",
1161 "renderer_host/media/media_stream_dispatcher_host.h", 1165 "renderer_host/media/media_stream_dispatcher_host.h",
1162 "renderer_host/media/media_stream_manager.cc", 1166 "renderer_host/media/media_stream_manager.cc",
1163 "renderer_host/media/media_stream_manager.h", 1167 "renderer_host/media/media_stream_manager.h",
1164 "renderer_host/media/media_stream_provider.h", 1168 "renderer_host/media/media_stream_provider.h",
1165 "renderer_host/media/media_stream_requester.h", 1169 "renderer_host/media/media_stream_requester.h",
1166 "renderer_host/media/media_stream_track_metrics_host.cc", 1170 "renderer_host/media/media_stream_track_metrics_host.cc",
1167 "renderer_host/media/media_stream_track_metrics_host.h", 1171 "renderer_host/media/media_stream_track_metrics_host.h",
1168 "renderer_host/media/media_stream_ui_proxy.cc", 1172 "renderer_host/media/media_stream_ui_proxy.cc",
1169 "renderer_host/media/media_stream_ui_proxy.h", 1173 "renderer_host/media/media_stream_ui_proxy.h",
1174 "renderer_host/media/render_frame_audio_output_stream_factory.cc",
1175 "renderer_host/media/render_frame_audio_output_stream_factory.h",
1170 "renderer_host/media/video_capture_controller.cc", 1176 "renderer_host/media/video_capture_controller.cc",
1171 "renderer_host/media/video_capture_controller.h", 1177 "renderer_host/media/video_capture_controller.h",
1172 "renderer_host/media/video_capture_controller_event_handler.h", 1178 "renderer_host/media/video_capture_controller_event_handler.h",
1173 "renderer_host/media/video_capture_gpu_jpeg_decoder.cc", 1179 "renderer_host/media/video_capture_gpu_jpeg_decoder.cc",
1174 "renderer_host/media/video_capture_gpu_jpeg_decoder.h", 1180 "renderer_host/media/video_capture_gpu_jpeg_decoder.h",
1175 "renderer_host/media/video_capture_host.cc", 1181 "renderer_host/media/video_capture_host.cc",
1176 "renderer_host/media/video_capture_host.h", 1182 "renderer_host/media/video_capture_host.h",
1177 "renderer_host/media/video_capture_manager.cc", 1183 "renderer_host/media/video_capture_manager.cc",
1178 "renderer_host/media/video_capture_manager.h", 1184 "renderer_host/media/video_capture_manager.h",
1179 "renderer_host/media/video_frame_receiver_on_io_thread.cc", 1185 "renderer_host/media/video_frame_receiver_on_io_thread.cc",
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after
1901 ] 1907 ]
1902 } 1908 }
1903 1909
1904 if (is_chromeos) { 1910 if (is_chromeos) {
1905 deps += [ 1911 deps += [
1906 "//chromeos", 1912 "//chromeos",
1907 "//chromeos:power_manager_proto", 1913 "//chromeos:power_manager_proto",
1908 ] 1914 ]
1909 } 1915 }
1910 1916
1911 if (enable_mojo_media) {
1912 deps += [ "//media/mojo/interfaces" ]
1913 }
1914
1915 if (use_aura) { 1917 if (use_aura) {
1916 deps += [ 1918 deps += [
1917 "//services/ui/public/cpp", 1919 "//services/ui/public/cpp",
1918 "//services/ui/public/interfaces", 1920 "//services/ui/public/interfaces",
1919 "//ui/aura", 1921 "//ui/aura",
1920 "//ui/aura_extra", 1922 "//ui/aura_extra",
1921 "//ui/strings", 1923 "//ui/strings",
1922 "//ui/wm", 1924 "//ui/wm",
1923 ] 1925 ]
1924 sources += [ 1926 sources += [
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
2058 if (!is_component_build) { 2060 if (!is_component_build) {
2059 public_deps = [ 2061 public_deps = [
2060 ":browser", 2062 ":browser",
2061 ] 2063 ]
2062 } else { 2064 } else {
2063 public_deps = [ 2065 public_deps = [
2064 "//third_party/leveldatabase", 2066 "//third_party/leveldatabase",
2065 ] 2067 ]
2066 } 2068 }
2067 } 2069 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698