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

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

Issue 2326003002: Moved codec-specific audio packet splitting into decoders. (Closed)
Patch Set: Created 4 years, 3 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': [ 10 'includes': [
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 'acm2/call_statistics.cc', 179 'acm2/call_statistics.cc',
180 'acm2/call_statistics.h', 180 'acm2/call_statistics.h',
181 'acm2/codec_manager.cc', 181 'acm2/codec_manager.cc',
182 'acm2/codec_manager.h', 182 'acm2/codec_manager.h',
183 'acm2/initial_delay_manager.cc', 183 'acm2/initial_delay_manager.cc',
184 'acm2/initial_delay_manager.h', 184 'acm2/initial_delay_manager.h',
185 'include/audio_coding_module.h', 185 'include/audio_coding_module.h',
186 'include/audio_coding_module_typedefs.h', 186 'include/audio_coding_module_typedefs.h',
187 ], 187 ],
188 }, 188 },
189 {
190 'target_name': 'audio_coding_utils',
kwiberg-webrtc 2016/09/12 02:11:01 Why not name this split_by_samples?
ossu 2016/09/12 11:26:37 I ... don't know. I thought it might become a plac
kwiberg-webrtc 2016/09/15 13:01:24 Good. I think we generally have build targets that
191 'type': 'static_library',
192 'dependencies': [
193 '<(webrtc_root)/common.gyp:webrtc_common',
194 'audio_decoder_interface',
195 ],
196 'include_dirs': [
197 '<(webrtc_root)',
198 ],
199 'direct_dependent_settings': {
200 'include_dirs': [
201 '<(webrtc_root)',
202 ],
203 },
204 'sources': [
205 'codecs/split_by_samples.cc',
206 'codecs/split_by_samples.h',
207 ],
208 },
189 ], 209 ],
190 'conditions': [ 210 'conditions': [
191 ['include_opus==1', { 211 ['include_opus==1', {
192 'includes': ['codecs/opus/opus.gypi',], 212 'includes': ['codecs/opus/opus.gypi',],
193 }], 213 }],
194 ['include_tests==1', { 214 ['include_tests==1', {
195 'targets': [ 215 'targets': [
196 { 216 {
197 'target_name': 'acm_receive_test', 217 'target_name': 'acm_receive_test',
198 'type': 'static_library', 218 'type': 'static_library',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 'sources': [ 281 'sources': [
262 'test/insert_packet_with_timing.cc', 282 'test/insert_packet_with_timing.cc',
263 'test/Channel.cc', 283 'test/Channel.cc',
264 'test/PCMFile.cc', 284 'test/PCMFile.cc',
265 ], 285 ],
266 }, # delay_test 286 }, # delay_test
267 ], 287 ],
268 }], 288 }],
269 ], 289 ],
270 } 290 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698