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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 "video/linux/video_capture_device_linux.h", | 69 "video/linux/video_capture_device_linux.h", |
70 "video/mac/video_capture_device_avfoundation_mac.h", | 70 "video/mac/video_capture_device_avfoundation_mac.h", |
71 "video/mac/video_capture_device_avfoundation_mac.mm", | 71 "video/mac/video_capture_device_avfoundation_mac.mm", |
72 "video/mac/video_capture_device_decklink_mac.h", | 72 "video/mac/video_capture_device_decklink_mac.h", |
73 "video/mac/video_capture_device_decklink_mac.mm", | 73 "video/mac/video_capture_device_decklink_mac.mm", |
74 "video/mac/video_capture_device_factory_mac.h", | 74 "video/mac/video_capture_device_factory_mac.h", |
75 "video/mac/video_capture_device_factory_mac.mm", | 75 "video/mac/video_capture_device_factory_mac.mm", |
76 "video/mac/video_capture_device_mac.h", | 76 "video/mac/video_capture_device_mac.h", |
77 "video/mac/video_capture_device_mac.mm", | 77 "video/mac/video_capture_device_mac.mm", |
78 "video/scoped_result_callback.h", | 78 "video/scoped_result_callback.h", |
| 79 "video/shared_memory_buffer_handle.cc", |
| 80 "video/shared_memory_buffer_handle.h", |
79 "video/shared_memory_buffer_tracker.cc", | 81 "video/shared_memory_buffer_tracker.cc", |
80 "video/shared_memory_buffer_tracker.h", | 82 "video/shared_memory_buffer_tracker.h", |
81 "video/video_capture_buffer_handle.h", | 83 "video/video_capture_buffer_handle.h", |
82 "video/video_capture_buffer_pool.h", | 84 "video/video_capture_buffer_pool.h", |
83 "video/video_capture_buffer_pool_impl.cc", | 85 "video/video_capture_buffer_pool_impl.cc", |
84 "video/video_capture_buffer_pool_impl.h", | 86 "video/video_capture_buffer_pool_impl.h", |
85 "video/video_capture_buffer_tracker.h", | 87 "video/video_capture_buffer_tracker.h", |
86 "video/video_capture_buffer_tracker_factory.h", | 88 "video/video_capture_buffer_tracker_factory.h", |
87 "video/video_capture_buffer_tracker_factory_impl.cc", | 89 "video/video_capture_buffer_tracker_factory_impl.cc", |
88 "video/video_capture_buffer_tracker_factory_impl.h", | 90 "video/video_capture_buffer_tracker_factory_impl.h", |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 "//media/capture/video/android", | 219 "//media/capture/video/android", |
218 "//media/capture/video/android:capture_java", | 220 "//media/capture/video/android:capture_java", |
219 ] | 221 ] |
220 } | 222 } |
221 | 223 |
222 if (is_win) { | 224 if (is_win) { |
223 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. | 225 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. |
224 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 226 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
225 } | 227 } |
226 } | 228 } |
OLD | NEW |