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", | |
220 "video/capture/linux/video_capture_device_chromeos.cc", | 214 "video/capture/linux/video_capture_device_chromeos.cc", |
221 "video/capture/linux/video_capture_device_chromeos.h", | 215 "video/capture/linux/video_capture_device_chromeos.h", |
222 "video/capture/linux/video_capture_device_linux.cc", | 216 "video/capture/linux/video_capture_device_linux.cc", |
223 "video/capture/linux/video_capture_device_linux.h", | 217 "video/capture/linux/video_capture_device_linux.h", |
224 "video/capture/mac/platform_video_capturing_mac.h", | 218 "video/capture/mac/platform_video_capturing_mac.h", |
225 "video/capture/mac/video_capture_device_avfoundation_mac.h", | 219 "video/capture/mac/video_capture_device_avfoundation_mac.h", |
226 "video/capture/mac/video_capture_device_avfoundation_mac.mm", | 220 "video/capture/mac/video_capture_device_avfoundation_mac.mm", |
227 "video/capture/mac/video_capture_device_decklink_mac.h", | 221 "video/capture/mac/video_capture_device_decklink_mac.h", |
228 "video/capture/mac/video_capture_device_decklink_mac.mm", | 222 "video/capture/mac/video_capture_device_decklink_mac.mm", |
229 "video/capture/mac/video_capture_device_factory_mac.h", | 223 "video/capture/mac/video_capture_device_factory_mac.h", |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 "//third_party/decklink", | 388 "//third_party/decklink", |
395 ] | 389 ] |
396 libs += [ | 390 libs += [ |
397 "CoreMIDI.framework", | 391 "CoreMIDI.framework", |
398 "CoreVideo.framework", | 392 "CoreVideo.framework", |
399 "OpenGL.framework", | 393 "OpenGL.framework", |
400 "QTKit.framework", | 394 "QTKit.framework", |
401 ] | 395 ] |
402 } | 396 } |
403 | 397 |
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 | |
411 if (is_ios) { | 398 if (is_ios) { |
412 deps += [ "//media/base/mac" ] | 399 deps += [ "//media/base/mac" ] |
413 } | 400 } |
414 | 401 |
415 if (is_win) { | 402 if (is_win) { |
416 libs += [ | 403 libs += [ |
417 "mf.lib", | 404 "mf.lib", |
418 "mfplat.lib", | 405 "mfplat.lib", |
419 "mfreadwrite.lib", | 406 "mfreadwrite.lib", |
420 "mfuuid.lib", | 407 "mfuuid.lib", |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 deps = [ | 801 deps = [ |
815 ":media", | 802 ":media", |
816 ":shared_memory_support", | 803 ":shared_memory_support", |
817 "//base", | 804 "//base", |
818 "//ui/gl", | 805 "//ui/gl", |
819 "//ui/gfx", | 806 "//ui/gfx", |
820 "//ui/gfx/geometry", | 807 "//ui/gfx/geometry", |
821 ] | 808 ] |
822 } | 809 } |
823 } | 810 } |
OLD | NEW |