OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
11 if (is_android) { | 11 if (is_android) { |
12 import("//build/config/android/rules.gni") | 12 import("//build/config/android/rules.gni") |
13 } | 13 } |
14 if (rtc_use_memcheck) { | 14 if (rtc_use_memcheck) { |
15 import("//tools/valgrind-webrtc/valgrind-webrtc.gni") | 15 import("//tools/valgrind-webrtc/valgrind-webrtc.gni") |
16 } | 16 } |
17 | 17 |
18 group("test") { | 18 group("test") { |
19 testonly = true | 19 testonly = true |
20 | 20 |
21 deps = [ | 21 deps = [ |
22 ":field_trial", | 22 ":field_trial", |
23 ":rtp_test_utils", | 23 ":rtp_test_utils", |
24 ":test_common", | 24 ":test_common", |
| 25 ":test_main", |
25 ":test_renderer", | 26 ":test_renderer", |
26 ":test_support", | 27 ":test_support", |
27 ":test_support_main", | |
28 ":test_support_unittests", | 28 ":test_support_unittests", |
29 ":video_test_common", | 29 ":video_test_common", |
30 ] | 30 ] |
31 } | 31 } |
32 | 32 |
33 rtc_source_set("video_test_common") { | 33 rtc_source_set("video_test_common") { |
34 testonly = true | 34 testonly = true |
35 sources = [ | 35 sources = [ |
36 "fake_texture_frame.cc", | 36 "fake_texture_frame.cc", |
37 "fake_texture_frame.h", | 37 "fake_texture_frame.h", |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 data = [ | 156 data = [ |
157 "../build/android/test_runner.py", | 157 "../build/android/test_runner.py", |
158 ] | 158 ] |
159 } | 159 } |
160 | 160 |
161 if (rtc_use_memcheck) { | 161 if (rtc_use_memcheck) { |
162 data = valgrind_webrtc_dependencies | 162 data = valgrind_webrtc_dependencies |
163 } | 163 } |
164 } | 164 } |
165 | 165 |
166 # Depend on this target when you want to have test_support but also the | |
167 # main method needed for gtest to execute! | |
168 rtc_source_set("test_support_main") { | |
169 testonly = true | |
170 | |
171 sources = [ | |
172 "run_all_unittests.cc", | |
173 "test_suite.cc", | |
174 "test_suite.h", | |
175 ] | |
176 | |
177 deps = [ | |
178 ":field_trial", | |
179 ":test_support", | |
180 "../system_wrappers:metrics_default", | |
181 "//testing/gmock", | |
182 "//testing/gtest", | |
183 "//third_party/gflags", | |
184 ] | |
185 } | |
186 | |
187 # Depend on this target when you want to have test_support and a special | 166 # Depend on this target when you want to have test_support and a special |
188 # main for mac which will run your test on a worker thread and consume | 167 # main for mac which will run your test on a worker thread and consume |
189 # events on the main thread. Useful if you want to access a webcam. | 168 # events on the main thread. Useful if you want to access a webcam. |
190 # This main will provide all the scaffolding and objective-c black magic | 169 # This main will provide all the scaffolding and objective-c black magic |
191 # for you. All you need to do is to implement a function in the | 170 # for you. All you need to do is to implement a function in the |
192 # run_threaded_main_mac.h file (ImplementThisToRunYourTest). | 171 # run_threaded_main_mac.h file (ImplementThisToRunYourTest). |
193 rtc_source_set("test_support_main_threaded_mac") { | 172 rtc_source_set("test_main_threaded_mac") { |
194 testonly = true | 173 testonly = true |
195 | 174 |
196 sources = [ | 175 sources = [ |
197 "testsupport/mac/run_threaded_main_mac.h", | 176 "testsupport/mac/run_threaded_main_mac.h", |
198 "testsupport/mac/run_threaded_main_mac.mm", | 177 "testsupport/mac/run_threaded_main_mac.mm", |
199 ] | 178 ] |
200 | 179 |
201 deps = [ | 180 deps = [ |
202 ":test_support", | 181 ":test_support", |
203 ] | 182 ] |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 deps += [ "//testing/android/native_test:native_test_support" ] | 248 deps += [ "//testing/android/native_test:native_test_support" ] |
270 shard_timeout = 900 | 249 shard_timeout = 900 |
271 } | 250 } |
272 | 251 |
273 if (is_ios) { | 252 if (is_ios) { |
274 deps += [ ":test_support_unittests_bundle_data" ] | 253 deps += [ ":test_support_unittests_bundle_data" ] |
275 } | 254 } |
276 | 255 |
277 deps += [ | 256 deps += [ |
278 ":test_common", | 257 ":test_common", |
279 ":test_support_main", | 258 ":test_main", |
280 "../modules/video_capture", | 259 "../modules/video_capture", |
281 "//testing/gmock", | 260 "//testing/gmock", |
282 "//testing/gtest", | 261 "//testing/gtest", |
283 ] | 262 ] |
284 } | 263 } |
285 | 264 |
286 rtc_source_set("test_common") { | 265 rtc_source_set("test_common") { |
287 testonly = true | 266 testonly = true |
288 sources = [ | 267 sources = [ |
289 "call_test.cc", | 268 "call_test.cc", |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 399 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
421 } | 400 } |
422 | 401 |
423 deps = [ | 402 deps = [ |
424 ":test_support", | 403 ":test_support", |
425 ":video_test_common", | 404 ":video_test_common", |
426 "../modules/media_file", | 405 "../modules/media_file", |
427 "//testing/gtest", | 406 "//testing/gtest", |
428 ] | 407 ] |
429 } | 408 } |
OLD | NEW |