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 = [ |
11 ":capture_lib", | 11 ":capture_lib", |
12 "//media/capture/mojo:capture_types", | 12 "//media/capture/mojo:capture_types", |
13 "//services/service_manager/public/cpp", | 13 "//services/service_manager/public/cpp", |
14 ] | 14 ] |
15 } | 15 } |
16 | 16 |
17 # Things needed by //media/capture/mojo:capture_types. | 17 # Things needed by //media/capture/mojo:capture_types. |
18 component("capture_base") { | 18 component("capture_base") { |
19 defines = [ "CAPTURE_IMPLEMENTATION" ] | 19 defines = [ "CAPTURE_IMPLEMENTATION" ] |
20 sources = [ | 20 sources = [ |
21 "capture_export.h", | 21 "capture_export.h", |
| 22 "video/video_capture_device_descriptor.cc", |
| 23 "video/video_capture_device_descriptor.h", |
| 24 "video/video_capture_device_info.cc", |
| 25 "video/video_capture_device_info.h", |
22 "video_capture_types.cc", | 26 "video_capture_types.cc", |
23 "video_capture_types.h", | 27 "video_capture_types.h", |
24 ] | 28 ] |
25 deps = [ | 29 deps = [ |
26 "//base", | 30 "//base", |
27 "//base:i18n", | 31 "//base:i18n", |
28 "//media", | 32 "//media", |
29 "//ui/gfx", | 33 "//ui/gfx", |
30 ] | 34 ] |
31 } | 35 } |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 "video/video_capture_buffer_pool_impl.cc", | 83 "video/video_capture_buffer_pool_impl.cc", |
80 "video/video_capture_buffer_pool_impl.h", | 84 "video/video_capture_buffer_pool_impl.h", |
81 "video/video_capture_buffer_tracker.h", | 85 "video/video_capture_buffer_tracker.h", |
82 "video/video_capture_buffer_tracker_factory.h", | 86 "video/video_capture_buffer_tracker_factory.h", |
83 "video/video_capture_buffer_tracker_factory_impl.cc", | 87 "video/video_capture_buffer_tracker_factory_impl.cc", |
84 "video/video_capture_buffer_tracker_factory_impl.h", | 88 "video/video_capture_buffer_tracker_factory_impl.h", |
85 "video/video_capture_device.cc", | 89 "video/video_capture_device.cc", |
86 "video/video_capture_device.h", | 90 "video/video_capture_device.h", |
87 "video/video_capture_device_client.cc", | 91 "video/video_capture_device_client.cc", |
88 "video/video_capture_device_client.h", | 92 "video/video_capture_device_client.h", |
89 "video/video_capture_device_descriptor.cc", | |
90 "video/video_capture_device_descriptor.h", | |
91 "video/video_capture_device_factory.cc", | 93 "video/video_capture_device_factory.cc", |
92 "video/video_capture_device_factory.h", | 94 "video/video_capture_device_factory.h", |
93 "video/video_capture_device_info.cc", | |
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.h", | 96 "video/video_capture_system.h", |
97 "video/video_capture_system_impl.cc", | 97 "video/video_capture_system_impl.cc", |
98 "video/video_capture_system_impl.h", | 98 "video/video_capture_system_impl.h", |
99 "video/video_frame_receiver.h", | 99 "video/video_frame_receiver.h", |
100 "video/video_frame_receiver_on_task_runner.cc", | 100 "video/video_frame_receiver_on_task_runner.cc", |
101 "video/video_frame_receiver_on_task_runner.h", | 101 "video/video_frame_receiver_on_task_runner.h", |
102 "video/win/capability_list_win.cc", | 102 "video/win/capability_list_win.cc", |
103 "video/win/capability_list_win.h", | 103 "video/win/capability_list_win.h", |
104 "video/win/filter_base_win.cc", | 104 "video/win/filter_base_win.cc", |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 "//media/capture/video/android", | 217 "//media/capture/video/android", |
218 "//media/capture/video/android:capture_java", | 218 "//media/capture/video/android:capture_java", |
219 ] | 219 ] |
220 } | 220 } |
221 | 221 |
222 if (is_win) { | 222 if (is_win) { |
223 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. | 223 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. |
224 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 224 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
225 } | 225 } |
226 } | 226 } |
OLD | NEW |