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