| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 "voice_engine:voice_engine_unittests", | 331 "voice_engine:voice_engine_unittests", |
| 332 ] | 332 ] |
| 333 if (is_android) { | 333 if (is_android) { |
| 334 deps += [ | 334 deps += [ |
| 335 ":android_junit_tests", | 335 ":android_junit_tests", |
| 336 "sdk/android:libjingle_peerconnection_android_unittest", | 336 "sdk/android:libjingle_peerconnection_android_unittest", |
| 337 ] | 337 ] |
| 338 } else { | 338 } else { |
| 339 deps += [ "modules/video_capture:video_capture_tests" ] | 339 deps += [ "modules/video_capture:video_capture_tests" ] |
| 340 } | 340 } |
| 341 if (!is_ios) { | |
| 342 deps += [ "voice_engine:voe_auto_test" ] | |
| 343 } | |
| 344 if (rtc_enable_protobuf) { | 341 if (rtc_enable_protobuf) { |
| 345 deps += [ | 342 deps += [ |
| 346 "audio:low_bandwidth_audio_test", | 343 "audio:low_bandwidth_audio_test", |
| 347 "logging:rtc_event_log2rtp_dump", | 344 "logging:rtc_event_log2rtp_dump", |
| 348 ] | 345 ] |
| 349 } | 346 } |
| 350 } | 347 } |
| 351 } | 348 } |
| 352 } | 349 } |
| 353 | 350 |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 ] | 542 ] |
| 546 | 543 |
| 547 deps = [ | 544 deps = [ |
| 548 "examples:AppRTCMobile_javalib", | 545 "examples:AppRTCMobile_javalib", |
| 549 "sdk/android:libjingle_peerconnection_java", | 546 "sdk/android:libjingle_peerconnection_java", |
| 550 "//base:base_java_test_support", | 547 "//base:base_java_test_support", |
| 551 ] | 548 ] |
| 552 } | 549 } |
| 553 } | 550 } |
| 554 } | 551 } |
| OLD | NEW |