| 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 import("audio_coding/audio_coding.gni") | 10 import("audio_coding/audio_coding.gni") |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "{{bundle_resources_dir}}/{{source_file_part}}", | 45 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 46 ] | 46 ] |
| 47 } | 47 } |
| 48 } | 48 } |
| 49 | 49 |
| 50 rtc_test("modules_tests") { | 50 rtc_test("modules_tests") { |
| 51 testonly = true | 51 testonly = true |
| 52 | 52 |
| 53 deps = [ | 53 deps = [ |
| 54 "../test:test_main", | 54 "../test:test_main", |
| 55 "../test:video_test_common", |
| 55 "audio_coding:audio_coding_modules_tests", | 56 "audio_coding:audio_coding_modules_tests", |
| 56 "desktop_capture:desktop_capture_modules_tests", | 57 "desktop_capture:desktop_capture_modules_tests", |
| 57 "rtp_rtcp:rtp_rtcp_modules_tests", | 58 "rtp_rtcp:rtp_rtcp_modules_tests", |
| 58 "video_coding:video_coding_modules_tests", | 59 "video_coding:video_coding_modules_tests", |
| 59 "//testing/gmock", | 60 "//testing/gmock", |
| 60 "//testing/gtest", | 61 "//testing/gtest", |
| 61 ] | 62 ] |
| 62 | 63 |
| 63 data = modules_tests_resources | 64 data = modules_tests_resources |
| 64 | 65 |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 "audio_mixer:audio_mixer_unittests", | 219 "audio_mixer:audio_mixer_unittests", |
| 219 "audio_processing:audio_processing_unittests", | 220 "audio_processing:audio_processing_unittests", |
| 220 "bitrate_controller:bitrate_controller_unittests", | 221 "bitrate_controller:bitrate_controller_unittests", |
| 221 "congestion_controller:congestion_controller_unittests", | 222 "congestion_controller:congestion_controller_unittests", |
| 222 "desktop_capture:desktop_capture_unittests", | 223 "desktop_capture:desktop_capture_unittests", |
| 223 "media_file:media_file_unittests", | 224 "media_file:media_file_unittests", |
| 224 "pacing:pacing_unittests", | 225 "pacing:pacing_unittests", |
| 225 "remote_bitrate_estimator:remote_bitrate_estimator_unittests", | 226 "remote_bitrate_estimator:remote_bitrate_estimator_unittests", |
| 226 "rtp_rtcp:rtp_rtcp_unittests", | 227 "rtp_rtcp:rtp_rtcp_unittests", |
| 227 "utility:utility_unittests", | 228 "utility:utility_unittests", |
| 229 "video_capture", |
| 228 "video_coding:video_coding_unittests", | 230 "video_coding:video_coding_unittests", |
| 229 "video_processing:video_processing_unittests", | 231 "video_processing:video_processing_unittests", |
| 230 ] | 232 ] |
| 231 | 233 |
| 232 data = modules_unittests_resources | 234 data = modules_unittests_resources |
| 233 | 235 |
| 234 if (is_android) { | 236 if (is_android) { |
| 235 deps += [ | 237 deps += [ |
| 236 "//testing/android/native_test:native_test_support", | 238 "//testing/android/native_test:native_test_support", |
| 237 "//webrtc/sdk/android:libjingle_peerconnection_java", | 239 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 238 ] | 240 ] |
| 239 shard_timeout = 900 | 241 shard_timeout = 900 |
| 240 } | 242 } |
| 241 if (is_ios) { | 243 if (is_ios) { |
| 242 info_plist = "//webrtc/test/ios/Info.plist" | 244 info_plist = "//webrtc/test/ios/Info.plist" |
| 243 deps += [ ":modules_unittests_bundle_data" ] | 245 deps += [ ":modules_unittests_bundle_data" ] |
| 244 configs += [ "..:common_objc" ] | 246 configs += [ "..:common_objc" ] |
| 245 ldflags = [ "-ObjC" ] | 247 ldflags = [ "-ObjC" ] |
| 246 } | 248 } |
| 247 } | 249 } |
| 248 } | 250 } |
| OLD | NEW |