| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 "audio_mixer:audio_mixer_unittests", | 218 "audio_mixer:audio_mixer_unittests", |
| 219 "audio_processing:audio_processing_unittests", | 219 "audio_processing:audio_processing_unittests", |
| 220 "bitrate_controller:bitrate_controller_unittests", | 220 "bitrate_controller:bitrate_controller_unittests", |
| 221 "congestion_controller:congestion_controller_unittests", | 221 "congestion_controller:congestion_controller_unittests", |
| 222 "desktop_capture:desktop_capture_unittests", | 222 "desktop_capture:desktop_capture_unittests", |
| 223 "media_file:media_file_unittests", | 223 "media_file:media_file_unittests", |
| 224 "pacing:pacing_unittests", | 224 "pacing:pacing_unittests", |
| 225 "remote_bitrate_estimator:remote_bitrate_estimator_unittests", | 225 "remote_bitrate_estimator:remote_bitrate_estimator_unittests", |
| 226 "rtp_rtcp:rtp_rtcp_unittests", | 226 "rtp_rtcp:rtp_rtcp_unittests", |
| 227 "utility:utility_unittests", | 227 "utility:utility_unittests", |
| 228 "video_capture", |
| 228 "video_coding:video_coding_unittests", | 229 "video_coding:video_coding_unittests", |
| 229 "video_processing:video_processing_unittests", | 230 "video_processing:video_processing_unittests", |
| 230 ] | 231 ] |
| 231 | 232 |
| 232 data = modules_unittests_resources | 233 data = modules_unittests_resources |
| 233 | 234 |
| 234 if (is_android) { | 235 if (is_android) { |
| 235 deps += [ | 236 deps += [ |
| 236 "//testing/android/native_test:native_test_support", | 237 "//testing/android/native_test:native_test_support", |
| 237 "//webrtc/sdk/android:libjingle_peerconnection_java", | 238 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 238 ] | 239 ] |
| 239 shard_timeout = 900 | 240 shard_timeout = 900 |
| 240 } | 241 } |
| 241 if (is_ios) { | 242 if (is_ios) { |
| 242 info_plist = "//webrtc/test/ios/Info.plist" | 243 info_plist = "//webrtc/test/ios/Info.plist" |
| 243 deps += [ ":modules_unittests_bundle_data" ] | 244 deps += [ ":modules_unittests_bundle_data" ] |
| 244 configs += [ "..:common_objc" ] | 245 configs += [ "..:common_objc" ] |
| 245 ldflags = [ "-ObjC" ] | 246 ldflags = [ "-ObjC" ] |
| 246 } | 247 } |
| 247 } | 248 } |
| 248 } | 249 } |
| OLD | NEW |