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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
63 "..:webrtc_common", | 63 "..:webrtc_common", |
64 "../common_video", | 64 "../common_video", |
65 "../modules/audio_coding", | 65 "../modules/audio_coding", |
66 "../modules/rtp_rtcp", | 66 "../modules/rtp_rtcp", |
67 "../modules/utility", | 67 "../modules/utility", |
68 "../modules/video_coding", | 68 "../modules/video_coding", |
69 "../modules/video_coding:video_codecs_test_framework", | 69 "../modules/video_coding:video_codecs_test_framework", |
70 "../system_wrappers", | 70 "../system_wrappers", |
71 "../test:test_support", | 71 "../test:test_support", |
72 "../test:test_support_main", | 72 "../test:test_support_main", |
73 "//testing/gmock", | |
73 "//testing/gtest", | 74 "//testing/gtest", |
74 ] | 75 ] |
75 | 76 |
76 sources = [ | 77 sources = [ |
77 "audio_coding/test/APITest.cc", | 78 "audio_coding/test/APITest.cc", |
78 "audio_coding/test/Channel.cc", | 79 "audio_coding/test/Channel.cc", |
79 "audio_coding/test/EncodeDecodeTest.cc", | 80 "audio_coding/test/EncodeDecodeTest.cc", |
80 "audio_coding/test/PCMFile.cc", | 81 "audio_coding/test/PCMFile.cc", |
81 "audio_coding/test/PacketLossTest.cc", | 82 "audio_coding/test/PacketLossTest.cc", |
82 "audio_coding/test/RTPFile.cc", | 83 "audio_coding/test/RTPFile.cc", |
83 "audio_coding/test/TestAllCodecs.cc", | 84 "audio_coding/test/TestAllCodecs.cc", |
84 "audio_coding/test/TestRedFec.cc", | 85 "audio_coding/test/TestRedFec.cc", |
85 "audio_coding/test/TestStereo.cc", | 86 "audio_coding/test/TestStereo.cc", |
86 "audio_coding/test/TestVADDTX.cc", | 87 "audio_coding/test/TestVADDTX.cc", |
87 "audio_coding/test/Tester.cc", | 88 "audio_coding/test/Tester.cc", |
88 "audio_coding/test/TwoWayCommunication.cc", | 89 "audio_coding/test/TwoWayCommunication.cc", |
89 "audio_coding/test/iSACTest.cc", | 90 "audio_coding/test/iSACTest.cc", |
90 "audio_coding/test/opus_test.cc", | 91 "audio_coding/test/opus_test.cc", |
91 "audio_coding/test/target_delay_unittest.cc", | 92 "audio_coding/test/target_delay_unittest.cc", |
92 "audio_coding/test/utility.cc", | 93 "audio_coding/test/utility.cc", |
93 "rtp_rtcp/test/testFec/test_fec.cc", | 94 "rtp_rtcp/test/testFec/test_fec.cc", |
94 "video_coding/codecs/test/videoprocessor_integrationtest.cc", | 95 "video_coding/codecs/test/videoprocessor_integrationtest.cc", |
95 "video_coding/codecs/vp8/test/vp8_impl_unittest.cc", | 96 "video_coding/codecs/vp8/test/vp8_impl_unittest.cc", |
96 ] | 97 ] |
97 | 98 |
99 if (rtc_desktop_capture_supported) { | |
100 deps += [ "desktop_capture" ] | |
101 sources += [ | |
102 "desktop_capture/rgba_color.cc", | |
kjellander_webrtc
2016/10/24 07:30:20
Please, can we avoid adding duplicated code here.
Hzj_jie
2016/10/24 20:50:54
Done.
kjellander_webrtc
2016/10/25 07:01:48
Please move the target into webrtc/modules/desktop
| |
103 "desktop_capture/rgba_color.h", | |
104 "desktop_capture/screen_capturer_integration_test.cc", | |
105 "desktop_capture/screen_drawer.cc", | |
106 "desktop_capture/screen_drawer.h", | |
107 "desktop_capture/screen_drawer_linux.cc", | |
108 "desktop_capture/screen_drawer_mac.cc", | |
109 "desktop_capture/screen_drawer_win.cc", | |
110 ] | |
111 } | |
112 | |
98 data = modules_tests_resources | 113 data = modules_tests_resources |
99 | 114 |
100 if (is_android) { | 115 if (is_android) { |
101 deps += [ "//testing/android/native_test:native_test_native_code" ] | 116 deps += [ "//testing/android/native_test:native_test_native_code" ] |
102 shard_timeout = 900 | 117 shard_timeout = 900 |
103 } | 118 } |
104 | 119 |
105 if (is_ios) { | 120 if (is_ios) { |
106 deps += [ ":modules_tests_bundle_data" ] | 121 deps += [ ":modules_tests_bundle_data" ] |
107 } | 122 } |
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
736 "../test:test_common", | 751 "../test:test_common", |
737 "../test:test_support_main", | 752 "../test:test_support_main", |
738 "remote_bitrate_estimator:bwe_simulator_lib", | 753 "remote_bitrate_estimator:bwe_simulator_lib", |
739 "video_capture", | 754 "video_capture", |
740 "//testing/gmock", | 755 "//testing/gmock", |
741 "//testing/gtest", | 756 "//testing/gtest", |
742 "//third_party/gflags", | 757 "//third_party/gflags", |
743 ] | 758 ] |
744 } | 759 } |
745 } | 760 } |
OLD | NEW |