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

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

Issue 1342933005: Move AudioDecoderOpus next to AudioEncoderOpus (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 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) 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': [
(...skipping 25 matching lines...) Expand all
36 ], 36 ],
37 }], 37 }],
38 ], 38 ],
39 'dependencies': [ 39 'dependencies': [
40 'audio_encoder_interface', 40 'audio_encoder_interface',
41 ], 41 ],
42 'include_dirs': [ 42 'include_dirs': [
43 '<(webrtc_root)', 43 '<(webrtc_root)',
44 ], 44 ],
45 'sources': [ 45 'sources': [
46 'audio_decoder_opus.cc',
46 'audio_encoder_opus.cc', 47 'audio_encoder_opus.cc',
48 'interface/audio_decoder_opus.h',
47 'interface/audio_encoder_opus.h', 49 'interface/audio_encoder_opus.h',
48 'interface/opus_interface.h', 50 'interface/opus_interface.h',
49 'opus_inst.h', 51 'opus_inst.h',
50 'opus_interface.c', 52 'opus_interface.c',
51 ], 53 ],
52 }, 54 },
53 ], 55 ],
54 'conditions': [ 56 'conditions': [
55 ['include_tests==1', { 57 ['include_tests==1', {
56 'targets': [ 58 'targets': [
(...skipping 10 matching lines...) Expand all
67 '<(webrtc_root)', 69 '<(webrtc_root)',
68 ], 70 ],
69 'sources': [ 71 'sources': [
70 'opus_fec_test.cc', 72 'opus_fec_test.cc',
71 ], 73 ],
72 }, 74 },
73 ], 75 ],
74 }], 76 }],
75 ], 77 ],
76 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698