OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'includes': [ | 10 'includes': [ |
11 '../../../../build/common.gypi', | 11 '../../../../build/common.gypi', |
12 ], | 12 ], |
13 'targets': [ | 13 'targets': [ |
14 { | 14 { |
15 'target_name': 'webrtc_vp9', | 15 'target_name': 'webrtc_vp9', |
16 'type': 'static_library', | 16 'type': 'static_library', |
17 'dependencies': [ | |
18 '<(webrtc_root)/common_video/common_video.gyp:common_video', | |
19 '<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:vi
deo_coding_utility', | |
20 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | |
21 ], | |
22 'conditions': [ | 17 'conditions': [ |
23 ['build_libvpx==1', { | 18 ['build_libvpx==1', { |
24 'dependencies': [ | 19 'dependencies': [ |
25 '<(libvpx_dir)/libvpx.gyp:libvpx_new', | 20 '<(libvpx_dir)/libvpx.gyp:libvpx_new', |
26 ], | 21 ], |
27 }], | 22 }], |
28 ['build_vp9==1', { | 23 ], |
29 'sources': [ | 24 'dependencies': [ |
30 'include/vp9.h', | 25 '<(webrtc_root)/common_video/common_video.gyp:common_video', |
31 'screenshare_layers.cc', | 26 '<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:vi
deo_coding_utility', |
32 'screenshare_layers.h', | 27 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
33 'vp9_frame_buffer_pool.cc', | 28 ], |
34 'vp9_frame_buffer_pool.h', | 29 'sources': [ |
35 'vp9_impl.cc', | 30 'include/vp9.h', |
36 'vp9_impl.h', | 31 'screenshare_layers.cc', |
37 ], | 32 'screenshare_layers.h', |
38 }, { | 33 'vp9_frame_buffer_pool.cc', |
39 'sources': [ | 34 'vp9_frame_buffer_pool.h', |
40 'vp9_dummy_impl.cc', | 35 'vp9_impl.cc', |
41 ], | 36 'vp9_impl.h', |
42 }], | |
43 ], | 37 ], |
44 }, | 38 }, |
45 ], | 39 ], |
46 } | 40 } |
OLD | NEW |