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

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

Issue 1415163002: Removing AudioCoding class, a.k.a the new ACM API (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 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) 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 'variables': { 10 'variables': {
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 'defines': [ 101 'defines': [
102 '<@(audio_coding_defines)', 102 '<@(audio_coding_defines)',
103 ], 103 ],
104 'dependencies': [ 104 'dependencies': [
105 '<@(audio_coding_dependencies)', 105 '<@(audio_coding_dependencies)',
106 'audio_coding_module', 106 'audio_coding_module',
107 'neteq_unittest_tools', 107 'neteq_unittest_tools',
108 '<(DEPTH)/testing/gtest.gyp:gtest', 108 '<(DEPTH)/testing/gtest.gyp:gtest',
109 ], 109 ],
110 'sources': [ 110 'sources': [
111 'acm2/acm_receive_test.cc',
112 'acm2/acm_receive_test.h',
113 'acm2/acm_receive_test_oldapi.cc', 111 'acm2/acm_receive_test_oldapi.cc',
114 'acm2/acm_receive_test_oldapi.h', 112 'acm2/acm_receive_test_oldapi.h',
115 ], 113 ],
116 }, # acm_receive_test 114 }, # acm_receive_test
117 { 115 {
118 'target_name': 'acm_send_test', 116 'target_name': 'acm_send_test',
119 'type': 'static_library', 117 'type': 'static_library',
120 'defines': [ 118 'defines': [
121 '<@(audio_coding_defines)', 119 '<@(audio_coding_defines)',
122 ], 120 ],
123 'dependencies': [ 121 'dependencies': [
124 '<@(audio_coding_dependencies)', 122 '<@(audio_coding_dependencies)',
125 'audio_coding_module', 123 'audio_coding_module',
126 'neteq_unittest_tools', 124 'neteq_unittest_tools',
127 '<(DEPTH)/testing/gtest.gyp:gtest', 125 '<(DEPTH)/testing/gtest.gyp:gtest',
128 ], 126 ],
129 'sources': [ 127 'sources': [
130 'acm2/acm_send_test.cc',
131 'acm2/acm_send_test.h',
132 'acm2/acm_send_test_oldapi.cc', 128 'acm2/acm_send_test_oldapi.cc',
133 'acm2/acm_send_test_oldapi.h', 129 'acm2/acm_send_test_oldapi.h',
134 ], 130 ],
135 }, # acm_send_test 131 }, # acm_send_test
136 { 132 {
137 'target_name': 'delay_test', 133 'target_name': 'delay_test',
138 'type': 'executable', 134 'type': 'executable',
139 'dependencies': [ 135 'dependencies': [
140 'audio_coding_module', 136 'audio_coding_module',
141 '<(DEPTH)/testing/gtest.gyp:gtest', 137 '<(DEPTH)/testing/gtest.gyp:gtest',
(...skipping 25 matching lines...) Expand all
167 'sources': [ 163 'sources': [
168 'test/insert_packet_with_timing.cc', 164 'test/insert_packet_with_timing.cc',
169 'test/Channel.cc', 165 'test/Channel.cc',
170 'test/PCMFile.cc', 166 'test/PCMFile.cc',
171 ], 167 ],
172 }, # delay_test 168 }, # delay_test
173 ], 169 ],
174 }], 170 }],
175 ], 171 ],
176 } 172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698