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

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

Issue 2738763002: [Mojo Video Capture] Introduce abstraction BuildableVideoCaptureDevice (Closed)
Patch Set: Rebase to Feb 10th and change similarity to 10 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("//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 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 "renderer_host/media/audio_input_sync_writer.h", 1127 "renderer_host/media/audio_input_sync_writer.h",
1128 "renderer_host/media/audio_output_authorization_handler.cc", 1128 "renderer_host/media/audio_output_authorization_handler.cc",
1129 "renderer_host/media/audio_output_authorization_handler.h", 1129 "renderer_host/media/audio_output_authorization_handler.h",
1130 "renderer_host/media/audio_output_delegate.h", 1130 "renderer_host/media/audio_output_delegate.h",
1131 "renderer_host/media/audio_output_delegate_impl.cc", 1131 "renderer_host/media/audio_output_delegate_impl.cc",
1132 "renderer_host/media/audio_output_delegate_impl.h", 1132 "renderer_host/media/audio_output_delegate_impl.h",
1133 "renderer_host/media/audio_renderer_host.cc", 1133 "renderer_host/media/audio_renderer_host.cc",
1134 "renderer_host/media/audio_renderer_host.h", 1134 "renderer_host/media/audio_renderer_host.h",
1135 "renderer_host/media/audio_sync_reader.cc", 1135 "renderer_host/media/audio_sync_reader.cc",
1136 "renderer_host/media/audio_sync_reader.h", 1136 "renderer_host/media/audio_sync_reader.h",
1137 "renderer_host/media/buildable_video_capture_device.h",
1138 "renderer_host/media/in_process_buildable_video_capture_device.cc",
1139 "renderer_host/media/in_process_buildable_video_capture_device.h",
1137 "renderer_host/media/media_capture_devices_impl.cc", 1140 "renderer_host/media/media_capture_devices_impl.cc",
1138 "renderer_host/media/media_capture_devices_impl.h", 1141 "renderer_host/media/media_capture_devices_impl.h",
1139 "renderer_host/media/media_devices_dispatcher_host.cc", 1142 "renderer_host/media/media_devices_dispatcher_host.cc",
1140 "renderer_host/media/media_devices_dispatcher_host.h", 1143 "renderer_host/media/media_devices_dispatcher_host.h",
1141 "renderer_host/media/media_devices_manager.cc", 1144 "renderer_host/media/media_devices_manager.cc",
1142 "renderer_host/media/media_devices_manager.h", 1145 "renderer_host/media/media_devices_manager.h",
1143 "renderer_host/media/media_stream_dispatcher_host.cc", 1146 "renderer_host/media/media_stream_dispatcher_host.cc",
1144 "renderer_host/media/media_stream_dispatcher_host.h", 1147 "renderer_host/media/media_stream_dispatcher_host.h",
1145 "renderer_host/media/media_stream_manager.cc", 1148 "renderer_host/media/media_stream_manager.cc",
1146 "renderer_host/media/media_stream_manager.h", 1149 "renderer_host/media/media_stream_manager.h",
1147 "renderer_host/media/media_stream_provider.h", 1150 "renderer_host/media/media_stream_provider.h",
1148 "renderer_host/media/media_stream_requester.h", 1151 "renderer_host/media/media_stream_requester.h",
1149 "renderer_host/media/media_stream_track_metrics_host.cc", 1152 "renderer_host/media/media_stream_track_metrics_host.cc",
1150 "renderer_host/media/media_stream_track_metrics_host.h", 1153 "renderer_host/media/media_stream_track_metrics_host.h",
1151 "renderer_host/media/media_stream_ui_proxy.cc", 1154 "renderer_host/media/media_stream_ui_proxy.cc",
1152 "renderer_host/media/media_stream_ui_proxy.h", 1155 "renderer_host/media/media_stream_ui_proxy.h",
1156 "renderer_host/media/ownership.cc",
1157 "renderer_host/media/ownership.h",
1153 "renderer_host/media/video_capture_controller.cc", 1158 "renderer_host/media/video_capture_controller.cc",
1154 "renderer_host/media/video_capture_controller.h", 1159 "renderer_host/media/video_capture_controller.h",
1155 "renderer_host/media/video_capture_controller_event_handler.h", 1160 "renderer_host/media/video_capture_controller_event_handler.h",
1161 "renderer_host/media/video_capture_device_entry.cc",
1162 "renderer_host/media/video_capture_device_entry.h",
1156 "renderer_host/media/video_capture_gpu_jpeg_decoder.cc", 1163 "renderer_host/media/video_capture_gpu_jpeg_decoder.cc",
1157 "renderer_host/media/video_capture_gpu_jpeg_decoder.h", 1164 "renderer_host/media/video_capture_gpu_jpeg_decoder.h",
1158 "renderer_host/media/video_capture_host.cc", 1165 "renderer_host/media/video_capture_host.cc",
1159 "renderer_host/media/video_capture_host.h", 1166 "renderer_host/media/video_capture_host.h",
1160 "renderer_host/media/video_capture_manager.cc", 1167 "renderer_host/media/video_capture_manager.cc",
1161 "renderer_host/media/video_capture_manager.h", 1168 "renderer_host/media/video_capture_manager.h",
1162 "renderer_host/media/video_frame_receiver_on_io_thread.cc", 1169 "renderer_host/media/video_frame_receiver_on_io_thread.cc",
1163 "renderer_host/media/video_frame_receiver_on_io_thread.h", 1170 "renderer_host/media/video_frame_receiver_on_io_thread.h",
1164 "renderer_host/native_web_keyboard_event_aura.cc", 1171 "renderer_host/native_web_keyboard_event_aura.cc",
1165 "renderer_host/native_web_keyboard_event_mac.mm", 1172 "renderer_host/native_web_keyboard_event_mac.mm",
(...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after
2032 if (!is_component_build) { 2039 if (!is_component_build) {
2033 public_deps = [ 2040 public_deps = [
2034 ":browser", 2041 ":browser",
2035 ] 2042 ]
2036 } else { 2043 } else {
2037 public_deps = [ 2044 public_deps = [
2038 "//third_party/leveldatabase", 2045 "//third_party/leveldatabase",
2039 ] 2046 ]
2040 } 2047 }
2041 } 2048 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698