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 | 10 |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 testonly = true | 82 testonly = true |
83 sources = [ | 83 sources = [ |
84 "video_quality_test.cc", | 84 "video_quality_test.cc", |
85 "video_quality_test.h", | 85 "video_quality_test.h", |
86 ] | 86 ] |
87 deps = [ | 87 deps = [ |
88 "../base:rtc_task_queue", | 88 "../base:rtc_task_queue", |
89 "../media:rtc_media_base", | 89 "../media:rtc_media_base", |
90 "../system_wrappers", | 90 "../system_wrappers", |
91 "//testing/gtest", | 91 "//testing/gtest", |
| 92 "//webrtc/test:test_renderer", |
92 ] | 93 ] |
93 if (!is_android) { | 94 if (!is_android) { |
94 deps += [ "../modules/video_capture:video_capture_internal_impl" ] | 95 deps += [ "../modules/video_capture:video_capture_internal_impl" ] |
95 } | 96 } |
96 if (!build_with_chromium && is_clang) { | 97 if (!build_with_chromium && is_clang) { |
97 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 98 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
98 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 99 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
99 } | 100 } |
100 } | 101 } |
101 | 102 |
| 103 rtc_source_set("video_full_stack_tests") { |
| 104 testonly = true |
| 105 sources = [ |
| 106 "full_stack_tests.cc", |
| 107 ] |
| 108 deps = [ |
| 109 "//testing/gtest", |
| 110 "//webrtc/test:test_common", |
| 111 ] |
| 112 if (!build_with_chromium && is_clang) { |
| 113 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 114 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 115 } |
| 116 } |
| 117 |
102 rtc_executable("video_loopback") { | 118 rtc_executable("video_loopback") { |
103 testonly = true | 119 testonly = true |
104 sources = [ | 120 sources = [ |
105 "video_loopback.cc", | 121 "video_loopback.cc", |
106 ] | 122 ] |
107 deps = [ | 123 deps = [ |
108 ":video_quality_test", | 124 ":video_quality_test", |
109 "../system_wrappers:metrics_default", | 125 "../system_wrappers:metrics_default", |
110 "../test:field_trial", | 126 "../test:field_trial", |
111 "../test:run_test", | 127 "../test:run_test", |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 ] | 210 ] |
195 if (!build_with_chromium && is_clang) { | 211 if (!build_with_chromium && is_clang) { |
196 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 212 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
197 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 213 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
198 } | 214 } |
199 if (rtc_use_h264) { | 215 if (rtc_use_h264) { |
200 defines += [ "WEBRTC_USE_H264" ] | 216 defines += [ "WEBRTC_USE_H264" ] |
201 } | 217 } |
202 } | 218 } |
203 } | 219 } |
OLD | NEW |