OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 import("audio_coding/audio_coding.gni") | 10 import("audio_coding/audio_coding.gni") |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 cflags = [ | 131 cflags = [ |
132 # TODO(phoglund): get rid of 4373 supression when | 132 # TODO(phoglund): get rid of 4373 supression when |
133 # http://code.google.com/p/webrtc/issues/detail?id=261 is solved. | 133 # http://code.google.com/p/webrtc/issues/detail?id=261 is solved. |
134 # legacy warning for ignoring const / volatile in signatures. | 134 # legacy warning for ignoring const / volatile in signatures. |
135 "/wd4373", | 135 "/wd4373", |
136 ] | 136 ] |
137 } | 137 } |
138 } | 138 } |
139 | 139 |
140 modules_unittests_resources = [ | 140 modules_unittests_resources = [ |
141 "//data/voice_engine/audio_tiny48.wav", | |
142 "//resources/att-downlink.rx", | 141 "//resources/att-downlink.rx", |
143 "//resources/att-uplink.rx", | 142 "//resources/att-uplink.rx", |
144 "//resources/audio_coding/neteq_opus.rtp", | 143 "//resources/audio_coding/neteq_opus.rtp", |
145 "//resources/audio_coding/neteq_universal_new.rtp", | 144 "//resources/audio_coding/neteq_universal_new.rtp", |
146 "//resources/audio_coding/speech_mono_16kHz.pcm", | 145 "//resources/audio_coding/speech_mono_16kHz.pcm", |
147 "//resources/audio_coding/speech_mono_32_48kHz.pcm", | 146 "//resources/audio_coding/speech_mono_32_48kHz.pcm", |
148 "//resources/audio_coding/testfile32kHz.pcm", | 147 "//resources/audio_coding/testfile32kHz.pcm", |
149 "//resources/audio_coding/teststereo32kHz.pcm", | 148 "//resources/audio_coding/teststereo32kHz.pcm", |
150 "//resources/audio_device/audio_short16.pcm", | 149 "//resources/audio_device/audio_short16.pcm", |
151 "//resources/audio_device/audio_short44.pcm", | 150 "//resources/audio_device/audio_short44.pcm", |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 "//resources/sprint-uplink.rx", | 230 "//resources/sprint-uplink.rx", |
232 "//resources/synthetic-trace.rx", | 231 "//resources/synthetic-trace.rx", |
233 "//resources/tmobile-downlink.rx", | 232 "//resources/tmobile-downlink.rx", |
234 "//resources/tmobile-uplink.rx", | 233 "//resources/tmobile-uplink.rx", |
235 "//resources/utility/encapsulated_pcm16b_8khz.wav", | 234 "//resources/utility/encapsulated_pcm16b_8khz.wav", |
236 "//resources/utility/encapsulated_pcmu_8khz.wav", | 235 "//resources/utility/encapsulated_pcmu_8khz.wav", |
237 "//resources/verizon3g-downlink.rx", | 236 "//resources/verizon3g-downlink.rx", |
238 "//resources/verizon3g-uplink.rx", | 237 "//resources/verizon3g-uplink.rx", |
239 "//resources/verizon4g-downlink.rx", | 238 "//resources/verizon4g-downlink.rx", |
240 "//resources/verizon4g-uplink.rx", | 239 "//resources/verizon4g-uplink.rx", |
| 240 "//resources/voice_engine/audio_tiny48.wav", |
241 ] | 241 ] |
242 | 242 |
243 if (is_ios) { | 243 if (is_ios) { |
244 bundle_data("modules_unittests_bundle_data") { | 244 bundle_data("modules_unittests_bundle_data") { |
245 testonly = true | 245 testonly = true |
246 sources = modules_unittests_resources | 246 sources = modules_unittests_resources |
247 outputs = [ | 247 outputs = [ |
248 "{{bundle_resources_dir}}/{{source_file_part}}", | 248 "{{bundle_resources_dir}}/{{source_file_part}}", |
249 ] | 249 ] |
250 } | 250 } |
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
746 "../test:test_common", | 746 "../test:test_common", |
747 "../test:test_support_main", | 747 "../test:test_support_main", |
748 "remote_bitrate_estimator:bwe_simulator_lib", | 748 "remote_bitrate_estimator:bwe_simulator_lib", |
749 "video_capture", | 749 "video_capture", |
750 "//testing/gmock", | 750 "//testing/gmock", |
751 "//testing/gtest", | 751 "//testing/gtest", |
752 "//third_party/gflags", | 752 "//third_party/gflags", |
753 ] | 753 ] |
754 } | 754 } |
755 } | 755 } |
OLD | NEW |