OLD | NEW |
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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 'audio_decoder_impl.cc', | 152 'audio_decoder_impl.cc', |
153 'audio_decoder_impl.h', | 153 'audio_decoder_impl.h', |
154 'audio_decoder_unittest.cc', | 154 'audio_decoder_unittest.cc', |
155 ], | 155 ], |
156 'conditions': [ | 156 'conditions': [ |
157 ['OS=="android"', { | 157 ['OS=="android"', { |
158 'dependencies': [ | 158 'dependencies': [ |
159 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod
e', | 159 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod
e', |
160 ], | 160 ], |
161 }], | 161 }], |
| 162 ['OS=="ios"', { |
| 163 'mac_bundle_resources': [ |
| 164 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm', |
| 165 ], |
| 166 }], |
162 ], | 167 ], |
163 }, # audio_decoder_unittests | 168 }, # audio_decoder_unittests |
164 | 169 |
165 { | 170 { |
166 'target_name': 'neteq_unittest_tools', | 171 'target_name': 'neteq_unittest_tools', |
167 'type': 'static_library', | 172 'type': 'static_library', |
168 'dependencies': [ | 173 'dependencies': [ |
169 'rtp_rtcp', | 174 'rtp_rtcp', |
170 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 175 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
171 '<(webrtc_root)/test/test.gyp:rtp_test_utils', | 176 '<(webrtc_root)/test/test.gyp:rtp_test_utils', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 'dependencies': [ | 215 'dependencies': [ |
211 '<(apk_tests_path):audio_decoder_unittests_apk', | 216 '<(apk_tests_path):audio_decoder_unittests_apk', |
212 ], | 217 ], |
213 }, | 218 }, |
214 ], | 219 ], |
215 }], | 220 }], |
216 ], | 221 ], |
217 }], # include_tests | 222 }], # include_tests |
218 ], # conditions | 223 ], # conditions |
219 } | 224 } |
OLD | NEW |