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

Side by Side Diff: webrtc/api/api.gyp

Issue 2397843005: Add FlexfecReceiveStream. (Closed)
Patch Set: Feedback response 1. Created 4 years, 2 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) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 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': [ '../build/common.gypi', ], 10 'includes': [ '../build/common.gypi', ],
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 # TODO(kjellander): Add remaining dependencies when webrtc:4243 is done. 101 # TODO(kjellander): Add remaining dependencies when webrtc:4243 is done.
102 '<(webrtc_root)/base/base.gyp:rtc_base_approved', 102 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
103 '<(webrtc_root)/common.gyp:webrtc_common', 103 '<(webrtc_root)/common.gyp:webrtc_common',
104 '<(webrtc_root)/modules/modules.gyp:audio_encoder_interface', 104 '<(webrtc_root)/modules/modules.gyp:audio_encoder_interface',
105 ], 105 ],
106 'sources': [ 106 'sources': [
107 'call/audio_receive_stream.h', 107 'call/audio_receive_stream.h',
108 'call/audio_send_stream.h', 108 'call/audio_send_stream.h',
109 'call/audio_sink.h', 109 'call/audio_sink.h',
110 'call/audio_state.h', 110 'call/audio_state.h',
111 'call/flexfec_receive_stream.h'
111 ], 112 ],
112 }, 113 },
113 { 114 {
114 'target_name': 'libjingle_peerconnection', 115 'target_name': 'libjingle_peerconnection',
115 'type': 'static_library', 116 'type': 'static_library',
116 'dependencies': [ 117 'dependencies': [
117 ':call_api', 118 ':call_api',
118 ':rtc_stats_api', 119 ':rtc_stats_api',
119 '<(webrtc_root)/media/media.gyp:rtc_media', 120 '<(webrtc_root)/media/media.gyp:rtc_media',
120 '<(webrtc_root)/pc/pc.gyp:rtc_pc', 121 '<(webrtc_root)/pc/pc.gyp:rtc_pc',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 '<(webrtc_root)/base/base.gyp:rtc_base_approved', 227 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
227 ], 228 ],
228 'sources': [ 229 'sources': [
229 'stats/rtcstats.h', 230 'stats/rtcstats.h',
230 'stats/rtcstats_objects.h', 231 'stats/rtcstats_objects.h',
231 'stats/rtcstatsreport.h', 232 'stats/rtcstatsreport.h',
232 ], 233 ],
233 }, # target rtc_stats_api 234 }, # target rtc_stats_api
234 ], # targets 235 ], # targets
235 } 236 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698