OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//media/media_options.gni") | 6 import("//media/media_options.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 group("capture") { | 9 group("capture") { |
10 public_deps = [ | 10 public_deps = [ |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 "video/video_capture_device.h", | 86 "video/video_capture_device.h", |
87 "video/video_capture_device_client.cc", | 87 "video/video_capture_device_client.cc", |
88 "video/video_capture_device_client.h", | 88 "video/video_capture_device_client.h", |
89 "video/video_capture_device_descriptor.cc", | 89 "video/video_capture_device_descriptor.cc", |
90 "video/video_capture_device_descriptor.h", | 90 "video/video_capture_device_descriptor.h", |
91 "video/video_capture_device_factory.cc", | 91 "video/video_capture_device_factory.cc", |
92 "video/video_capture_device_factory.h", | 92 "video/video_capture_device_factory.h", |
93 "video/video_capture_device_info.cc", | 93 "video/video_capture_device_info.cc", |
94 "video/video_capture_device_info.h", | 94 "video/video_capture_device_info.h", |
95 "video/video_capture_jpeg_decoder.h", | 95 "video/video_capture_jpeg_decoder.h", |
96 "video/video_capture_system.cc", | |
97 "video/video_capture_system.h", | 96 "video/video_capture_system.h", |
| 97 "video/video_capture_system_impl.cc", |
| 98 "video/video_capture_system_impl.h", |
98 "video/video_frame_receiver.h", | 99 "video/video_frame_receiver.h", |
99 "video/win/capability_list_win.cc", | 100 "video/win/capability_list_win.cc", |
100 "video/win/capability_list_win.h", | 101 "video/win/capability_list_win.h", |
101 "video/win/filter_base_win.cc", | 102 "video/win/filter_base_win.cc", |
102 "video/win/filter_base_win.h", | 103 "video/win/filter_base_win.h", |
103 "video/win/pin_base_win.cc", | 104 "video/win/pin_base_win.cc", |
104 "video/win/pin_base_win.h", | 105 "video/win/pin_base_win.h", |
105 "video/win/sink_filter_observer_win.h", | 106 "video/win/sink_filter_observer_win.h", |
106 "video/win/sink_filter_win.cc", | 107 "video/win/sink_filter_win.cc", |
107 "video/win/sink_filter_win.h", | 108 "video/win/sink_filter_win.h", |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 "//media/capture/video/android", | 215 "//media/capture/video/android", |
215 "//media/capture/video/android:capture_java", | 216 "//media/capture/video/android:capture_java", |
216 ] | 217 ] |
217 } | 218 } |
218 | 219 |
219 if (is_win) { | 220 if (is_win) { |
220 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. | 221 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. |
221 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 222 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
222 } | 223 } |
223 } | 224 } |
OLD | NEW |