| OLD | NEW |
| 1 # Copyright 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright 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 if (is_ios) { | 10 if (is_ios) { |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 visibility = [ "..:rtc_unittests" ] | 377 visibility = [ "..:rtc_unittests" ] |
| 378 } | 378 } |
| 379 sources = [ | 379 sources = [ |
| 380 "objc/Framework/UnitTests/RTCConfigurationTest.mm", | 380 "objc/Framework/UnitTests/RTCConfigurationTest.mm", |
| 381 "objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm", | 381 "objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm", |
| 382 "objc/Framework/UnitTests/RTCIceCandidateTest.mm", | 382 "objc/Framework/UnitTests/RTCIceCandidateTest.mm", |
| 383 "objc/Framework/UnitTests/RTCIceServerTest.mm", | 383 "objc/Framework/UnitTests/RTCIceServerTest.mm", |
| 384 "objc/Framework/UnitTests/RTCMediaConstraintsTest.mm", | 384 "objc/Framework/UnitTests/RTCMediaConstraintsTest.mm", |
| 385 "objc/Framework/UnitTests/RTCPeerConnectionTest.mm", | 385 "objc/Framework/UnitTests/RTCPeerConnectionTest.mm", |
| 386 "objc/Framework/UnitTests/RTCSessionDescriptionTest.mm", | 386 "objc/Framework/UnitTests/RTCSessionDescriptionTest.mm", |
| 387 "objc/Framework/UnitTests/RTCTracingTest.mm", |
| 387 "objc/Framework/UnitTests/avformatmappertests.mm", | 388 "objc/Framework/UnitTests/avformatmappertests.mm", |
| 388 ] | 389 ] |
| 389 if (is_ios && | 390 if (is_ios && |
| 390 !(use_ios_simulator && | 391 !(use_ios_simulator && |
| 391 # The tests crash on these simulator versions: | 392 # The tests crash on these simulator versions: |
| 392 (ios_sdk_version == "10.0" || ios_sdk_version == "10.1"))) { | 393 (ios_sdk_version == "10.0" || ios_sdk_version == "10.1"))) { |
| 393 sources += | 394 sources += |
| 394 [ "objc/Framework/UnitTests/RTCCameraVideoCapturerTests.mm" ] | 395 [ "objc/Framework/UnitTests/RTCCameraVideoCapturerTests.mm" ] |
| 395 } | 396 } |
| 396 | 397 |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 public_deps = [ | 599 public_deps = [ |
| 599 "$rtc_libyuv_dir", | 600 "$rtc_libyuv_dir", |
| 600 ] | 601 ] |
| 601 } else { | 602 } else { |
| 602 # Need to add a directory normally exported by libyuv. | 603 # Need to add a directory normally exported by libyuv. |
| 603 include_dirs = [ "$rtc_libyuv_dir/include" ] | 604 include_dirs = [ "$rtc_libyuv_dir/include" ] |
| 604 } | 605 } |
| 605 } | 606 } |
| 606 } | 607 } |
| 607 } | 608 } |
| OLD | NEW |