Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: webrtc/modules/video_coding/video_coding.gypi

Issue 1187573004: iOS HW H264 support. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Move unittest file. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_i420', 16 'webrtc_i420',
16 '<(webrtc_root)/common_video/common_video.gyp:common_video', 17 '<(webrtc_root)/common_video/common_video.gyp:common_video',
17 '<(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',
18 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', 19 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
19 '<(webrtc_vp8_dir)/vp8.gyp:webrtc_vp8', 20 '<(webrtc_vp8_dir)/vp8.gyp:webrtc_vp8',
20 '<(webrtc_vp9_dir)/vp9.gyp:webrtc_vp9', 21 '<(webrtc_vp9_dir)/vp9.gyp:webrtc_vp9',
21 ], 22 ],
22 'sources': [ 23 'sources': [
23 # interfaces 24 # interfaces
24 'main/interface/video_coding.h', 25 'main/interface/video_coding.h',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 'main/source/timing.cc', 76 'main/source/timing.cc',
76 'main/source/video_coding_impl.cc', 77 'main/source/video_coding_impl.cc',
77 'main/source/video_sender.cc', 78 'main/source/video_sender.cc',
78 'main/source/video_receiver.cc', 79 'main/source/video_receiver.cc',
79 ], # source 80 ], # source
80 # TODO(jschuh): Bug 1348: fix size_t to int truncations. 81 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
81 'msvs_disabled_warnings': [ 4267, ], 82 'msvs_disabled_warnings': [ 4267, ],
82 }, 83 },
83 ], 84 ],
84 } 85 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698