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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 "video/video_capture_device.cc", | 85 "video/video_capture_device.cc", |
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_jpeg_decoder.h", | 93 "video/video_capture_jpeg_decoder.h", |
94 "video/video_frame_receiver.h", | 94 "video/video_frame_receiver.h", |
| 95 "video/video_frame_receiver_on_task_runner.cc", |
| 96 "video/video_frame_receiver_on_task_runner.h", |
95 "video/win/capability_list_win.cc", | 97 "video/win/capability_list_win.cc", |
96 "video/win/capability_list_win.h", | 98 "video/win/capability_list_win.h", |
97 "video/win/filter_base_win.cc", | 99 "video/win/filter_base_win.cc", |
98 "video/win/filter_base_win.h", | 100 "video/win/filter_base_win.h", |
99 "video/win/pin_base_win.cc", | 101 "video/win/pin_base_win.cc", |
100 "video/win/pin_base_win.h", | 102 "video/win/pin_base_win.h", |
101 "video/win/sink_filter_observer_win.h", | 103 "video/win/sink_filter_observer_win.h", |
102 "video/win/sink_filter_win.cc", | 104 "video/win/sink_filter_win.cc", |
103 "video/win/sink_filter_win.h", | 105 "video/win/sink_filter_win.h", |
104 "video/win/sink_input_pin_win.cc", | 106 "video/win/sink_input_pin_win.cc", |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 "//media/capture/video/android", | 212 "//media/capture/video/android", |
211 "//media/capture/video/android:capture_java", | 213 "//media/capture/video/android:capture_java", |
212 ] | 214 ] |
213 } | 215 } |
214 | 216 |
215 if (is_win) { | 217 if (is_win) { |
216 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. | 218 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. |
217 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 219 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
218 } | 220 } |
219 } | 221 } |
OLD | NEW |