OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'webrtc_video_coding', | 12 'target_name': 'webrtc_video_coding', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'dependencies': [ | 14 'dependencies': [ |
15 'webrtc_h264', | 15 'webrtc_h264', |
16 'webrtc_i420', | 16 'webrtc_i420', |
17 '../base/base.gyp:rtc_task_queue', | |
18 '<(webrtc_root)/common_video/common_video.gyp:common_video', | 17 '<(webrtc_root)/common_video/common_video.gyp:common_video', |
19 '<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:vi
deo_coding_utility', | 18 '<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:vi
deo_coding_utility', |
20 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 19 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
21 '<(webrtc_vp8_dir)/vp8.gyp:webrtc_vp8', | 20 '<(webrtc_vp8_dir)/vp8.gyp:webrtc_vp8', |
22 '<(webrtc_vp9_dir)/vp9.gyp:webrtc_vp9', | 21 '<(webrtc_vp9_dir)/vp9.gyp:webrtc_vp9', |
23 ], | 22 ], |
24 'sources': [ | 23 'sources': [ |
25 # interfaces | 24 # interfaces |
26 'include/video_coding.h', | 25 'include/video_coding.h', |
27 'include/video_coding_defines.h', | 26 'include/video_coding_defines.h', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 'timing.cc', | 87 'timing.cc', |
89 'video_coding_impl.cc', | 88 'video_coding_impl.cc', |
90 'video_sender.cc', | 89 'video_sender.cc', |
91 'video_receiver.cc', | 90 'video_receiver.cc', |
92 ], # source | 91 ], # source |
93 # TODO(jschuh): Bug 1348: fix size_t to int truncations. | 92 # TODO(jschuh): Bug 1348: fix size_t to int truncations. |
94 'msvs_disabled_warnings': [ 4267, ], | 93 'msvs_disabled_warnings': [ 4267, ], |
95 }, | 94 }, |
96 ], | 95 ], |
97 } | 96 } |
OLD | NEW |