OLD | NEW |
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/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 "renderers/audio_renderer_impl.cc", | 204 "renderers/audio_renderer_impl.cc", |
205 "renderers/audio_renderer_impl.h", | 205 "renderers/audio_renderer_impl.h", |
206 "renderers/gpu_video_accelerator_factories.cc", | 206 "renderers/gpu_video_accelerator_factories.cc", |
207 "renderers/gpu_video_accelerator_factories.h", | 207 "renderers/gpu_video_accelerator_factories.h", |
208 "renderers/renderer_impl.cc", | 208 "renderers/renderer_impl.cc", |
209 "renderers/renderer_impl.h", | 209 "renderers/renderer_impl.h", |
210 "renderers/video_renderer_impl.cc", | 210 "renderers/video_renderer_impl.cc", |
211 "renderers/video_renderer_impl.h", | 211 "renderers/video_renderer_impl.h", |
212 "video/capture/file_video_capture_device.cc", | 212 "video/capture/file_video_capture_device.cc", |
213 "video/capture/file_video_capture_device.h", | 213 "video/capture/file_video_capture_device.h", |
| 214 "video/capture/linux/v4l2_capture_delegate.cc", |
| 215 "video/capture/linux/v4l2_capture_delegate.h", |
| 216 "video/capture/linux/v4l2_capture_delegate_multi_plane.cc", |
| 217 "video/capture/linux/v4l2_capture_delegate_multi_plane.h", |
| 218 "video/capture/linux/v4l2_capture_delegate_single_plane.cc", |
| 219 "video/capture/linux/v4l2_capture_delegate_single_plane.h", |
214 "video/capture/linux/video_capture_device_chromeos.cc", | 220 "video/capture/linux/video_capture_device_chromeos.cc", |
215 "video/capture/linux/video_capture_device_chromeos.h", | 221 "video/capture/linux/video_capture_device_chromeos.h", |
216 "video/capture/linux/video_capture_device_linux.cc", | 222 "video/capture/linux/video_capture_device_linux.cc", |
217 "video/capture/linux/video_capture_device_linux.h", | 223 "video/capture/linux/video_capture_device_linux.h", |
218 "video/capture/mac/platform_video_capturing_mac.h", | 224 "video/capture/mac/platform_video_capturing_mac.h", |
219 "video/capture/mac/video_capture_device_avfoundation_mac.h", | 225 "video/capture/mac/video_capture_device_avfoundation_mac.h", |
220 "video/capture/mac/video_capture_device_avfoundation_mac.mm", | 226 "video/capture/mac/video_capture_device_avfoundation_mac.mm", |
221 "video/capture/mac/video_capture_device_decklink_mac.h", | 227 "video/capture/mac/video_capture_device_decklink_mac.h", |
222 "video/capture/mac/video_capture_device_decklink_mac.mm", | 228 "video/capture/mac/video_capture_device_decklink_mac.mm", |
223 "video/capture/mac/video_capture_device_factory_mac.h", | 229 "video/capture/mac/video_capture_device_factory_mac.h", |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 "//third_party/decklink", | 394 "//third_party/decklink", |
389 ] | 395 ] |
390 libs += [ | 396 libs += [ |
391 "CoreMIDI.framework", | 397 "CoreMIDI.framework", |
392 "CoreVideo.framework", | 398 "CoreVideo.framework", |
393 "OpenGL.framework", | 399 "OpenGL.framework", |
394 "QTKit.framework", | 400 "QTKit.framework", |
395 ] | 401 ] |
396 } | 402 } |
397 | 403 |
| 404 if (is_openbsd) { |
| 405 sources -= [ |
| 406 "video/capture/linux/v4l2_capture_delegate_multi_plane.cc", |
| 407 "video/capture/linux/v4l2_capture_delegate_multi_plane.h", |
| 408 ] |
| 409 } |
| 410 |
398 if (is_ios) { | 411 if (is_ios) { |
399 deps += [ "//media/base/mac" ] | 412 deps += [ "//media/base/mac" ] |
400 } | 413 } |
401 | 414 |
402 if (is_win) { | 415 if (is_win) { |
403 libs += [ | 416 libs += [ |
404 "mf.lib", | 417 "mf.lib", |
405 "mfplat.lib", | 418 "mfplat.lib", |
406 "mfreadwrite.lib", | 419 "mfreadwrite.lib", |
407 "mfuuid.lib", | 420 "mfuuid.lib", |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
801 deps = [ | 814 deps = [ |
802 ":media", | 815 ":media", |
803 ":shared_memory_support", | 816 ":shared_memory_support", |
804 "//base", | 817 "//base", |
805 "//ui/gl", | 818 "//ui/gl", |
806 "//ui/gfx", | 819 "//ui/gfx", |
807 "//ui/gfx/geometry", | 820 "//ui/gfx/geometry", |
808 ] | 821 ] |
809 } | 822 } |
810 } | 823 } |
OLD | NEW |