| 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 import("audio_coding/audio_coding.gni") | 10 import("audio_coding/audio_coding.gni") |
| (...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 698 shard_timeout = 900 | 698 shard_timeout = 900 |
| 699 } | 699 } |
| 700 if (is_ios) { | 700 if (is_ios) { |
| 701 info_plist = "//webrtc/test/ios/Info.plist" | 701 info_plist = "//webrtc/test/ios/Info.plist" |
| 702 deps += [ ":modules_unittests_bundle_data" ] | 702 deps += [ ":modules_unittests_bundle_data" ] |
| 703 configs += [ | 703 configs += [ |
| 704 "..:common_objc", | 704 "..:common_objc", |
| 705 "//build/config/compiler:enable_arc", | 705 "//build/config/compiler:enable_arc", |
| 706 ] | 706 ] |
| 707 | 707 |
| 708 sources += [ "audio_device/ios/objc/RTCAudioSessionTest.mm" ] | 708 sources += [ |
| 709 "audio_device/ios/objc/RTCAudioSessionTest.mm", |
| 710 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", |
| 711 ] |
| 709 | 712 |
| 710 if (target_cpu != "x64") { | 713 if (target_cpu != "x64") { |
| 711 sources += [ "audio_device/ios/audio_device_unittest_ios.cc" ] | 714 sources += [ "audio_device/ios/audio_device_unittest_ios.cc" ] |
| 712 } | 715 } |
| 713 | 716 |
| 714 ldflags = [ "-ObjC" ] | 717 ldflags = [ "-ObjC" ] |
| 715 } | 718 } |
| 716 } | 719 } |
| 717 | 720 |
| 718 rtc_test("bwe_simulator") { | 721 rtc_test("bwe_simulator") { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 741 "../test:test_common", | 744 "../test:test_common", |
| 742 "../test:test_support_main", | 745 "../test:test_support_main", |
| 743 "remote_bitrate_estimator:bwe_simulator_lib", | 746 "remote_bitrate_estimator:bwe_simulator_lib", |
| 744 "video_capture", | 747 "video_capture", |
| 745 "//testing/gmock", | 748 "//testing/gmock", |
| 746 "//testing/gtest", | 749 "//testing/gtest", |
| 747 "//third_party/gflags", | 750 "//third_party/gflags", |
| 748 ] | 751 ] |
| 749 } | 752 } |
| 750 } | 753 } |
| OLD | NEW |