| 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 14 matching lines...) Expand all Loading... |
| 25 "desktop_capture", | 25 "desktop_capture", |
| 26 "media_file", | 26 "media_file", |
| 27 "rtp_rtcp", | 27 "rtp_rtcp", |
| 28 "utility", | 28 "utility", |
| 29 "video_coding", | 29 "video_coding", |
| 30 "video_processing", | 30 "video_processing", |
| 31 ] | 31 ] |
| 32 } | 32 } |
| 33 | 33 |
| 34 if (rtc_include_tests) { | 34 if (rtc_include_tests) { |
| 35 if (is_android || is_ios) { | 35 modules_tests_resources = [ |
| 36 modules_tests_resources = [ | 36 "//resources/audio_coding/testfile32kHz.pcm", |
| 37 "//resources/audio_coding/testfile32kHz.pcm", | 37 "//resources/audio_coding/teststereo32kHz.pcm", |
| 38 "//resources/audio_coding/teststereo32kHz.pcm", | 38 "//resources/foreman_cif.yuv", |
| 39 "//resources/foreman_cif.yuv", | 39 "//resources/paris_qcif.yuv", |
| 40 "//resources/paris_qcif.yuv", | 40 ] |
| 41 ] | |
| 42 } | |
| 43 | 41 |
| 44 if (is_ios) { | 42 if (is_ios) { |
| 45 bundle_data("modules_tests_bundle_data") { | 43 bundle_data("modules_tests_bundle_data") { |
| 46 testonly = true | 44 testonly = true |
| 47 sources = modules_tests_resources | 45 sources = modules_tests_resources |
| 48 outputs = [ | 46 outputs = [ |
| 49 "{{bundle_resources_dir}}/{{source_file_part}}", | 47 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 50 ] | 48 ] |
| 51 } | 49 } |
| 52 } | 50 } |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "audio_coding/test/TwoWayCommunication.cc", | 88 "audio_coding/test/TwoWayCommunication.cc", |
| 91 "audio_coding/test/iSACTest.cc", | 89 "audio_coding/test/iSACTest.cc", |
| 92 "audio_coding/test/opus_test.cc", | 90 "audio_coding/test/opus_test.cc", |
| 93 "audio_coding/test/target_delay_unittest.cc", | 91 "audio_coding/test/target_delay_unittest.cc", |
| 94 "audio_coding/test/utility.cc", | 92 "audio_coding/test/utility.cc", |
| 95 "rtp_rtcp/test/testFec/test_fec.cc", | 93 "rtp_rtcp/test/testFec/test_fec.cc", |
| 96 "video_coding/codecs/test/videoprocessor_integrationtest.cc", | 94 "video_coding/codecs/test/videoprocessor_integrationtest.cc", |
| 97 "video_coding/codecs/vp8/test/vp8_impl_unittest.cc", | 95 "video_coding/codecs/vp8/test/vp8_impl_unittest.cc", |
| 98 ] | 96 ] |
| 99 | 97 |
| 98 data = modules_tests_resources |
| 99 |
| 100 if (is_android) { | 100 if (is_android) { |
| 101 deps += [ "//testing/android/native_test:native_test_native_code" ] | 101 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 102 data = modules_tests_resources | |
| 103 shard_timeout = 900 | 102 shard_timeout = 900 |
| 104 } | 103 } |
| 105 | 104 |
| 106 if (is_ios) { | 105 if (is_ios) { |
| 107 deps += [ ":modules_tests_bundle_data" ] | 106 deps += [ ":modules_tests_bundle_data" ] |
| 108 } | 107 } |
| 109 | 108 |
| 110 if (is_clang) { | 109 if (is_clang) { |
| 111 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 110 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 112 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 111 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 113 } | 112 } |
| 114 if (is_win) { | 113 if (is_win) { |
| 115 cflags = [ | 114 cflags = [ |
| 116 # TODO(phoglund): get rid of 4373 supression when | 115 # TODO(phoglund): get rid of 4373 supression when |
| 117 # http://code.google.com/p/webrtc/issues/detail?id=261 is solved. | 116 # http://code.google.com/p/webrtc/issues/detail?id=261 is solved. |
| 118 # legacy warning for ignoring const / volatile in signatures. | 117 # legacy warning for ignoring const / volatile in signatures. |
| 119 "/wd4373", | 118 "/wd4373", |
| 120 ] | 119 ] |
| 121 } | 120 } |
| 122 } | 121 } |
| 123 | 122 |
| 124 if (is_android || is_ios) { | 123 modules_unittests_resources = [ |
| 125 modules_unittests_resources = [ | 124 "//data/audio_processing/output_data_fixed.pb", |
| 126 "//data/audio_processing/output_data_fixed.pb", | 125 "//data/audio_processing/output_data_float.pb", |
| 127 "//data/audio_processing/output_data_float.pb", | 126 "//data/audio_processing/output_data_mac.pb", |
| 128 "//data/audio_processing/output_data_mac.pb", | 127 "//data/voice_engine/audio_tiny48.wav", |
| 129 "//data/voice_engine/audio_tiny48.wav", | 128 "//resources/att-downlink.rx", |
| 130 "//resources/att-downlink.rx", | 129 "//resources/att-uplink.rx", |
| 131 "//resources/att-uplink.rx", | 130 "//resources/audio_coding/neteq_opus.rtp", |
| 132 "//resources/audio_coding/neteq_opus.rtp", | 131 "//resources/audio_coding/neteq_universal_new.rtp", |
| 133 "//resources/audio_coding/neteq_universal_new.rtp", | 132 "//resources/audio_coding/speech_mono_16kHz.pcm", |
| 134 "//resources/audio_coding/speech_mono_16kHz.pcm", | 133 "//resources/audio_coding/speech_mono_32_48kHz.pcm", |
| 135 "//resources/audio_coding/speech_mono_32_48kHz.pcm", | 134 "//resources/audio_coding/testfile32kHz.pcm", |
| 136 "//resources/audio_coding/testfile32kHz.pcm", | 135 "//resources/audio_coding/teststereo32kHz.pcm", |
| 137 "//resources/audio_coding/teststereo32kHz.pcm", | 136 "//resources/audio_device/audio_short16.pcm", |
| 138 "//resources/audio_device/audio_short16.pcm", | 137 "//resources/audio_device/audio_short44.pcm", |
| 139 "//resources/audio_device/audio_short44.pcm", | 138 "//resources/audio_device/audio_short48.pcm", |
| 140 "//resources/audio_device/audio_short48.pcm", | 139 "//resources/audio_processing/agc/agc_audio.pcm", |
| 141 "//resources/audio_processing/agc/agc_audio.pcm", | 140 "//resources/audio_processing/agc/agc_no_circular_buffer.dat", |
| 142 "//resources/audio_processing/agc/agc_no_circular_buffer.dat", | 141 "//resources/audio_processing/agc/agc_pitch_gain.dat", |
| 143 "//resources/audio_processing/agc/agc_pitch_gain.dat", | 142 "//resources/audio_processing/agc/agc_pitch_lag.dat", |
| 144 "//resources/audio_processing/agc/agc_pitch_lag.dat", | 143 "//resources/audio_processing/agc/agc_spectral_peak.dat", |
| 145 "//resources/audio_processing/agc/agc_spectral_peak.dat", | 144 "//resources/audio_processing/agc/agc_vad.dat", |
| 146 "//resources/audio_processing/agc/agc_vad.dat", | 145 "//resources/audio_processing/agc/agc_voicing_prob.dat", |
| 147 "//resources/audio_processing/agc/agc_voicing_prob.dat", | 146 "//resources/audio_processing/agc/agc_with_circular_buffer.dat", |
| 148 "//resources/audio_processing/agc/agc_with_circular_buffer.dat", | 147 "//resources/audio_processing/transient/ajm-macbook-1-spke16m.pcm", |
| 149 "//resources/audio_processing/transient/ajm-macbook-1-spke16m.pcm", | 148 "//resources/audio_processing/transient/audio16kHz.pcm", |
| 150 "//resources/audio_processing/transient/audio16kHz.pcm", | 149 "//resources/audio_processing/transient/audio32kHz.pcm", |
| 151 "//resources/audio_processing/transient/audio32kHz.pcm", | 150 "//resources/audio_processing/transient/audio48kHz.pcm", |
| 152 "//resources/audio_processing/transient/audio48kHz.pcm", | 151 "//resources/audio_processing/transient/audio8kHz.pcm", |
| 153 "//resources/audio_processing/transient/audio8kHz.pcm", | 152 "//resources/audio_processing/transient/detect16kHz.dat", |
| 154 "//resources/audio_processing/transient/detect16kHz.dat", | 153 "//resources/audio_processing/transient/detect32kHz.dat", |
| 155 "//resources/audio_processing/transient/detect32kHz.dat", | 154 "//resources/audio_processing/transient/detect48kHz.dat", |
| 156 "//resources/audio_processing/transient/detect48kHz.dat", | 155 "//resources/audio_processing/transient/detect8kHz.dat", |
| 157 "//resources/audio_processing/transient/detect8kHz.dat", | 156 "//resources/audio_processing/transient/double-utils.dat", |
| 158 "//resources/audio_processing/transient/double-utils.dat", | 157 "//resources/audio_processing/transient/float-utils.dat", |
| 159 "//resources/audio_processing/transient/float-utils.dat", | 158 "//resources/audio_processing/transient/suppressed16kHz.pcm", |
| 160 "//resources/audio_processing/transient/suppressed16kHz.pcm", | 159 "//resources/audio_processing/transient/suppressed32kHz.pcm", |
| 161 "//resources/audio_processing/transient/suppressed32kHz.pcm", | 160 "//resources/audio_processing/transient/suppressed8kHz.pcm", |
| 162 "//resources/audio_processing/transient/suppressed8kHz.pcm", | 161 "//resources/audio_processing/transient/wpd0.dat", |
| 163 "//resources/audio_processing/transient/wpd0.dat", | 162 "//resources/audio_processing/transient/wpd1.dat", |
| 164 "//resources/audio_processing/transient/wpd1.dat", | 163 "//resources/audio_processing/transient/wpd2.dat", |
| 165 "//resources/audio_processing/transient/wpd2.dat", | 164 "//resources/audio_processing/transient/wpd3.dat", |
| 166 "//resources/audio_processing/transient/wpd3.dat", | 165 "//resources/audio_processing/transient/wpd4.dat", |
| 167 "//resources/audio_processing/transient/wpd4.dat", | 166 "//resources/audio_processing/transient/wpd5.dat", |
| 168 "//resources/audio_processing/transient/wpd5.dat", | 167 "//resources/audio_processing/transient/wpd6.dat", |
| 169 "//resources/audio_processing/transient/wpd6.dat", | 168 "//resources/audio_processing/transient/wpd7.dat", |
| 170 "//resources/audio_processing/transient/wpd7.dat", | 169 "//resources/deflicker_before_cif_short.yuv", |
| 171 "//resources/deflicker_before_cif_short.yuv", | 170 "//resources/far16_stereo.pcm", |
| 172 "//resources/far16_stereo.pcm", | 171 "//resources/far32_stereo.pcm", |
| 173 "//resources/far32_stereo.pcm", | 172 "//resources/far44_stereo.pcm", |
| 174 "//resources/far44_stereo.pcm", | 173 "//resources/far48_stereo.pcm", |
| 175 "//resources/far48_stereo.pcm", | 174 "//resources/far8_stereo.pcm", |
| 176 "//resources/far8_stereo.pcm", | 175 "//resources/foremanColorEnhanced_cif_short.yuv", |
| 177 "//resources/foremanColorEnhanced_cif_short.yuv", | 176 "//resources/foreman_cif.yuv", |
| 178 "//resources/foreman_cif.yuv", | 177 "//resources/foreman_cif_short.yuv", |
| 179 "//resources/foreman_cif_short.yuv", | 178 "//resources/near16_stereo.pcm", |
| 180 "//resources/near16_stereo.pcm", | 179 "//resources/near32_stereo.pcm", |
| 181 "//resources/near32_stereo.pcm", | 180 "//resources/near44_stereo.pcm", |
| 182 "//resources/near44_stereo.pcm", | 181 "//resources/near48_stereo.pcm", |
| 183 "//resources/near48_stereo.pcm", | 182 "//resources/near8_stereo.pcm", |
| 184 "//resources/near8_stereo.pcm", | 183 "//resources/ref03.aecdump", |
| 185 "//resources/ref03.aecdump", | 184 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingCho
ke1_0_AST.bin", |
| 186 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingC
hoke1_0_AST.bin", | 185 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingCho
ke1_0_TOF.bin", |
| 187 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingC
hoke1_0_TOF.bin", | 186 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingCho
ke1_1_AST.bin", |
| 188 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingC
hoke1_1_AST.bin", | 187 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingCho
ke1_1_TOF.bin", |
| 189 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingC
hoke1_1_TOF.bin", | 188 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingCho
ke2_0_AST.bin", |
| 190 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingC
hoke2_0_AST.bin", | 189 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingCho
ke2_0_TOF.bin", |
| 191 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingC
hoke2_0_TOF.bin", | 190 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingCho
ke2_1_AST.bin", |
| 192 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingC
hoke2_1_AST.bin", | 191 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingCho
ke2_1_TOF.bin", |
| 193 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingC
hoke2_1_TOF.bin", | 192 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingDel
ay1_0_AST.bin", |
| 194 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingD
elay1_0_AST.bin", | 193 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingDel
ay1_0_TOF.bin", |
| 195 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingD
elay1_0_TOF.bin", | 194 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingLos
s1_0_AST.bin", |
| 196 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingL
oss1_0_AST.bin", | 195 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingLos
s1_0_TOF.bin", |
| 197 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingL
oss1_0_TOF.bin", | 196 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_Multi1_1_AST.
bin", |
| 198 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_Multi1_1_AS
T.bin", | 197 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_Multi1_1_TOF.
bin", |
| 199 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_Multi1_1_TO
F.bin", | 198 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke_0
_AST.bin", |
| 200 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke
_0_AST.bin", | 199 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke_0
_TOF.bin", |
| 201 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke
_0_TOF.bin", | 200 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke_1
_AST.bin", |
| 202 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke
_1_AST.bin", | 201 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke_1
_TOF.bin", |
| 203 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke
_1_TOF.bin", | 202 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyDelay_0
_AST.bin", |
| 204 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyDelay
_0_AST.bin", | 203 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyDelay_0
_TOF.bin", |
| 205 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyDelay
_0_TOF.bin", | 204 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyLoss_0_
AST.bin", |
| 206 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyLoss_
0_AST.bin", | 205 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyLoss_0_
TOF.bin", |
| 207 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyLoss_
0_TOF.bin", | 206 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_UnlimitedSpee
d_0_AST.bin", |
| 208 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_UnlimitedSp
eed_0_AST.bin", | 207 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_UnlimitedSpee
d_0_TOF.bin", |
| 209 "//resources/remote_bitrate_estimator/VideoSendersTest_BweTest_UnlimitedSp
eed_0_TOF.bin", | 208 "//resources/short_mixed_mono_48.dat", |
| 210 "//resources/short_mixed_mono_48.dat", | 209 "//resources/short_mixed_mono_48_arm.dat", |
| 211 "//resources/short_mixed_mono_48_arm.dat", | 210 "//resources/short_mixed_mono_48.pcm", |
| 212 "//resources/short_mixed_mono_48.pcm", | 211 "//resources/short_mixed_stereo_48.dat", |
| 213 "//resources/short_mixed_stereo_48.dat", | 212 "//resources/short_mixed_stereo_48.pcm", |
| 214 "//resources/short_mixed_stereo_48.pcm", | 213 "//resources/sprint-downlink.rx", |
| 215 "//resources/sprint-downlink.rx", | 214 "//resources/sprint-uplink.rx", |
| 216 "//resources/sprint-uplink.rx", | 215 "//resources/synthetic-trace.rx", |
| 217 "//resources/synthetic-trace.rx", | 216 "//resources/tmobile-downlink.rx", |
| 218 "//resources/tmobile-downlink.rx", | 217 "//resources/tmobile-uplink.rx", |
| 219 "//resources/tmobile-uplink.rx", | 218 "//resources/utility/encapsulated_pcm16b_8khz.wav", |
| 220 "//resources/utility/encapsulated_pcm16b_8khz.wav", | 219 "//resources/utility/encapsulated_pcmu_8khz.wav", |
| 221 "//resources/utility/encapsulated_pcmu_8khz.wav", | 220 "//resources/verizon3g-downlink.rx", |
| 222 "//resources/verizon3g-downlink.rx", | 221 "//resources/verizon3g-uplink.rx", |
| 223 "//resources/verizon3g-uplink.rx", | 222 "//resources/verizon4g-downlink.rx", |
| 224 "//resources/verizon4g-downlink.rx", | 223 "//resources/verizon4g-uplink.rx", |
| 225 "//resources/verizon4g-uplink.rx", | 224 ] |
| 226 ] | |
| 227 } | |
| 228 | 225 |
| 229 if (is_ios) { | 226 if (is_ios) { |
| 230 bundle_data("modules_unittests_bundle_data") { | 227 bundle_data("modules_unittests_bundle_data") { |
| 231 testonly = true | 228 testonly = true |
| 232 sources = modules_unittests_resources | 229 sources = modules_unittests_resources |
| 233 outputs = [ | 230 outputs = [ |
| 234 "{{bundle_resources_dir}}/{{source_file_part}}", | 231 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 235 ] | 232 ] |
| 236 } | 233 } |
| 237 } | 234 } |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 "video_coding", | 629 "video_coding", |
| 633 "video_coding:video_codecs_test_framework", | 630 "video_coding:video_codecs_test_framework", |
| 634 "video_coding:webrtc_vp8", | 631 "video_coding:webrtc_vp8", |
| 635 "video_coding:webrtc_vp9", | 632 "video_coding:webrtc_vp9", |
| 636 "video_processing", | 633 "video_processing", |
| 637 "//testing/gmock", | 634 "//testing/gmock", |
| 638 "//testing/gtest", | 635 "//testing/gtest", |
| 639 "//third_party/gflags", | 636 "//third_party/gflags", |
| 640 ] | 637 ] |
| 641 | 638 |
| 639 data = modules_unittests_resources |
| 640 |
| 642 if (is_android) { | 641 if (is_android) { |
| 643 deps += [ | 642 deps += [ |
| 644 "//testing/android/native_test:native_test_support", | 643 "//testing/android/native_test:native_test_support", |
| 645 "//webrtc/api:libjingle_peerconnection_java", | 644 "//webrtc/api:libjingle_peerconnection_java", |
| 646 ] | 645 ] |
| 647 | 646 |
| 648 # Need to disable error due to the line in | 647 # Need to disable error due to the line in |
| 649 # base/android/jni_android.h triggering it: | 648 # base/android/jni_android.h triggering it: |
| 650 # const BASE_EXPORT jobject GetApplicationContext() | 649 # const BASE_EXPORT jobject GetApplicationContext() |
| 651 # error: type qualifiers ignored on function return type | 650 # error: type qualifiers ignored on function return type |
| 652 cflags = [ "-Wno-ignored-qualifiers" ] | 651 cflags = [ "-Wno-ignored-qualifiers" ] |
| 653 sources += [ | 652 sources += [ |
| 654 "audio_device/android/audio_device_unittest.cc", | 653 "audio_device/android/audio_device_unittest.cc", |
| 655 "audio_device/android/audio_manager_unittest.cc", | 654 "audio_device/android/audio_manager_unittest.cc", |
| 656 "audio_device/android/ensure_initialized.cc", | 655 "audio_device/android/ensure_initialized.cc", |
| 657 "audio_device/android/ensure_initialized.h", | 656 "audio_device/android/ensure_initialized.h", |
| 658 ] | 657 ] |
| 659 data = modules_unittests_resources | |
| 660 shard_timeout = 900 | 658 shard_timeout = 900 |
| 661 } | 659 } |
| 662 if (is_ios) { | 660 if (is_ios) { |
| 663 deps += [ ":modules_unittests_bundle_data" ] | 661 deps += [ ":modules_unittests_bundle_data" ] |
| 664 configs += [ | 662 configs += [ |
| 665 "..:common_objc", | 663 "..:common_objc", |
| 666 "//build/config/compiler:enable_arc", | 664 "//build/config/compiler:enable_arc", |
| 667 ] | 665 ] |
| 668 | 666 |
| 669 sources += [ | 667 sources += [ |
| 670 "audio_device/ios/audio_device_unittest_ios.cc", | 668 "audio_device/ios/audio_device_unittest_ios.cc", |
| 671 "audio_device/ios/objc/RTCAudioSessionTest.mm", | 669 "audio_device/ios/objc/RTCAudioSessionTest.mm", |
| 672 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", | 670 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", |
| 673 ] | 671 ] |
| 674 | 672 |
| 675 ldflags = [ "-ObjC" ] | 673 ldflags = [ "-ObjC" ] |
| 676 } | 674 } |
| 677 } | 675 } |
| 678 } | 676 } |
| OLD | NEW |