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") |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 sources = [ | 186 sources = [ |
187 "testsupport/mac/run_threaded_main_mac.h", | 187 "testsupport/mac/run_threaded_main_mac.h", |
188 "testsupport/mac/run_threaded_main_mac.mm", | 188 "testsupport/mac/run_threaded_main_mac.mm", |
189 ] | 189 ] |
190 | 190 |
191 deps = [ | 191 deps = [ |
192 ":test_support", | 192 ":test_support", |
193 ] | 193 ] |
194 } | 194 } |
195 | 195 |
| 196 rtc_source_set("run_test") { |
| 197 testonly = true |
| 198 sources = [ |
| 199 "run_test.h", |
| 200 ] |
| 201 if (is_mac) { |
| 202 sources += [ "mac/run_test.mm" ] |
| 203 } else { |
| 204 sources += [ "run_test.cc" ] |
| 205 } |
| 206 } |
| 207 |
196 test_support_unittests_resources = [ | 208 test_support_unittests_resources = [ |
197 "//resources/foreman_cif_short.yuv", | 209 "//resources/foreman_cif_short.yuv", |
198 "//resources/video_coding/frame-ethernet-ii.pcap", | 210 "//resources/video_coding/frame-ethernet-ii.pcap", |
199 "//resources/video_coding/frame-loopback.pcap", | 211 "//resources/video_coding/frame-loopback.pcap", |
200 "//resources/video_coding/pltype103.rtp", | 212 "//resources/video_coding/pltype103.rtp", |
201 "//resources/video_coding/pltype103_header_only.rtp", | 213 "//resources/video_coding/pltype103_header_only.rtp", |
202 "//resources/video_coding/ssrcs-2.pcap", | 214 "//resources/video_coding/ssrcs-2.pcap", |
203 "//resources/video_coding/ssrcs-3.pcap", | 215 "//resources/video_coding/ssrcs-3.pcap", |
204 ] | 216 ] |
205 | 217 |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 405 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
394 } | 406 } |
395 | 407 |
396 deps = [ | 408 deps = [ |
397 ":test_support", | 409 ":test_support", |
398 ":video_test_common", | 410 ":video_test_common", |
399 "../modules/media_file", | 411 "../modules/media_file", |
400 "//testing/gtest", | 412 "//testing/gtest", |
401 ] | 413 ] |
402 } | 414 } |
OLD | NEW |