| 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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 # https://developer.apple.com/library/mac/qa/qa1490/_index.html | 538 # https://developer.apple.com/library/mac/qa/qa1490/_index.html |
| 539 ldflags = [ "-ObjC" ] | 539 ldflags = [ "-ObjC" ] |
| 540 | 540 |
| 541 defines = [ "GTEST_RELATIVE_PATH" ] | 541 defines = [ "GTEST_RELATIVE_PATH" ] |
| 542 deps = [ | 542 deps = [ |
| 543 ":peerconnection_objc", | 543 ":peerconnection_objc", |
| 544 ":peerconnectionfactory_objc", | 544 ":peerconnectionfactory_objc", |
| 545 ":videotoolbox_objc", | 545 ":videotoolbox_objc", |
| 546 ":videotracksource_objc", | 546 ":videotracksource_objc", |
| 547 "..//system_wrappers:system_wrappers_default", | 547 "..//system_wrappers:system_wrappers_default", |
| 548 "../media:rtc_media_base", |
| 548 "../modules:module_api", | 549 "../modules:module_api", |
| 549 "../rtc_base:rtc_base_tests_utils", | 550 "../rtc_base:rtc_base_tests_utils", |
| 550 "../system_wrappers:system_wrappers_default", | 551 "../system_wrappers:system_wrappers_default", |
| 551 "//third_party/ocmock", | 552 "//third_party/ocmock", |
| 552 ] | 553 ] |
| 553 | 554 |
| 554 if (is_ios) { | 555 if (is_ios) { |
| 555 sources += [ "objc/Framework/UnitTests/RTCAudioSessionTest.mm" ] | 556 sources += [ "objc/Framework/UnitTests/RTCAudioSessionTest.mm" ] |
| 556 | 557 |
| 557 # RTCMTLVideoView not supported on 32-bit arm | 558 # RTCMTLVideoView not supported on 32-bit arm |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 774 public_deps = [ | 775 public_deps = [ |
| 775 "$rtc_libyuv_dir", | 776 "$rtc_libyuv_dir", |
| 776 ] | 777 ] |
| 777 } else { | 778 } else { |
| 778 # Need to add a directory normally exported by libyuv. | 779 # Need to add a directory normally exported by libyuv. |
| 779 include_dirs = [ "$rtc_libyuv_dir/include" ] | 780 include_dirs = [ "$rtc_libyuv_dir/include" ] |
| 780 } | 781 } |
| 781 } | 782 } |
| 782 } | 783 } |
| 783 } | 784 } |
| OLD | NEW |