| 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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 visibility = [ "..:rtc_unittests" ] | 503 visibility = [ "..:rtc_unittests" ] |
| 504 } | 504 } |
| 505 sources = [ | 505 sources = [ |
| 506 "objc/Framework/UnitTests/RTCConfigurationTest.mm", | 506 "objc/Framework/UnitTests/RTCConfigurationTest.mm", |
| 507 "objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm", | 507 "objc/Framework/UnitTests/RTCDataChannelConfigurationTest.mm", |
| 508 "objc/Framework/UnitTests/RTCIceCandidateTest.mm", | 508 "objc/Framework/UnitTests/RTCIceCandidateTest.mm", |
| 509 "objc/Framework/UnitTests/RTCIceServerTest.mm", | 509 "objc/Framework/UnitTests/RTCIceServerTest.mm", |
| 510 "objc/Framework/UnitTests/RTCMediaConstraintsTest.mm", | 510 "objc/Framework/UnitTests/RTCMediaConstraintsTest.mm", |
| 511 "objc/Framework/UnitTests/RTCPeerConnectionTest.mm", | 511 "objc/Framework/UnitTests/RTCPeerConnectionTest.mm", |
| 512 "objc/Framework/UnitTests/RTCSessionDescriptionTest.mm", | 512 "objc/Framework/UnitTests/RTCSessionDescriptionTest.mm", |
| 513 "objc/Framework/UnitTests/RTCTracingTest.mm", |
| 513 "objc/Framework/UnitTests/avformatmappertests.mm", | 514 "objc/Framework/UnitTests/avformatmappertests.mm", |
| 514 ] | 515 ] |
| 515 if (is_ios && | 516 if (is_ios && |
| 516 !(use_ios_simulator && | 517 !(use_ios_simulator && |
| 517 # The tests crash on these simulator versions: | 518 # The tests crash on these simulator versions: |
| 518 (ios_sdk_version == "10.0" || ios_sdk_version == "10.1"))) { | 519 (ios_sdk_version == "10.0" || ios_sdk_version == "10.1"))) { |
| 519 sources += | 520 sources += |
| 520 [ "objc/Framework/UnitTests/RTCCameraVideoCapturerTests.mm" ] | 521 [ "objc/Framework/UnitTests/RTCCameraVideoCapturerTests.mm" ] |
| 521 } | 522 } |
| 522 | 523 |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 732 public_deps = [ | 733 public_deps = [ |
| 733 "$rtc_libyuv_dir", | 734 "$rtc_libyuv_dir", |
| 734 ] | 735 ] |
| 735 } else { | 736 } else { |
| 736 # Need to add a directory normally exported by libyuv. | 737 # Need to add a directory normally exported by libyuv. |
| 737 include_dirs = [ "$rtc_libyuv_dir/include" ] | 738 include_dirs = [ "$rtc_libyuv_dir/include" ] |
| 738 } | 739 } |
| 739 } | 740 } |
| 740 } | 741 } |
| 741 } | 742 } |
| OLD | NEW |