Chromium Code Reviews| Index: media/BUILD.gn |
| diff --git a/media/BUILD.gn b/media/BUILD.gn |
| index 494ca6b39c0951afacff87ab72a4e99369ccd1a4..eda7cb4098f71aa0f0802c8b1060d854f55cdb21 100644 |
| --- a/media/BUILD.gn |
| +++ b/media/BUILD.gn |
| @@ -211,6 +211,12 @@ component("media") { |
| "renderers/video_renderer_impl.h", |
| "video/capture/file_video_capture_device.cc", |
| "video/capture/file_video_capture_device.h", |
| + "video/capture/linux/v4l2_capture_delegate_multi_plane.cc", |
| + "video/capture/linux/v4l2_capture_delegate_multi_plane.h", |
| + "video/capture/linux/v4l2_capture_delegate_single_plane.cc", |
| + "video/capture/linux/v4l2_capture_delegate_single_plane.h", |
| + "video/capture/linux/v4l2_video_capture_delegate.cc", |
| + "video/capture/linux/v4l2_video_capture_delegate.h", |
| "video/capture/linux/video_capture_device_chromeos.cc", |
| "video/capture/linux/video_capture_device_chromeos.h", |
| "video/capture/linux/video_capture_device_linux.cc", |
| @@ -395,6 +401,13 @@ component("media") { |
| ] |
| } |
| + if (is_openbsd) { |
|
DaleCurtis
2015/03/19 19:07:16
I think this is always false.
mcasas
2015/03/19 22:57:00
There are a number of specifics in media.gyp
for t
|
| + sources -= [ |
| + "video/capture/linux/v4l2_capture_delegate_multi_plane.cc", |
| + "video/capture/linux/v4l2_capture_delegate_multi_plane.h", |
| + ] |
| + } |
| + |
| if (is_ios) { |
| deps += [ "//media/base/mac" ] |
| } |