Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Side by Side Diff: webrtc/video/BUILD.gn

Issue 2997883002: Video/Screenshare loopback tool.
Patch Set: Rebase Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/test/fake_network_pipe.cc ('k') | webrtc/video/video_quality_test.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("../webrtc.gni") 9 import("../webrtc.gni")
10 10
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 "//testing/gmock", 172 "//testing/gmock",
173 "//testing/gtest", 173 "//testing/gtest",
174 "//third_party/gflags", 174 "//third_party/gflags",
175 ] 175 ]
176 if (!build_with_chromium && is_clang) { 176 if (!build_with_chromium && is_clang) {
177 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 177 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
178 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 178 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
179 } 179 }
180 } 180 }
181 181
182 rtc_executable("vs_loopback") {
183 testonly = true
184 sources = [
185 "vs_loopback.cc",
186 ]
187 deps = [
188 ":video_quality_test",
189 "../rtc_base:rtc_base_approved",
190 "../system_wrappers:metrics_default",
191 "../test:field_trial",
192 "../test:run_test",
193 "../test:test_common",
194 "../test:test_renderer",
195 "../test:test_support",
196 "//testing/gmock",
197 "//testing/gtest",
198 "//third_party/gflags",
199 ]
200 if (!build_with_chromium && is_clang) {
201 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
202 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
203 }
204 }
205
182 rtc_executable("screenshare_loopback") { 206 rtc_executable("screenshare_loopback") {
183 testonly = true 207 testonly = true
184 sources = [ 208 sources = [
185 "screenshare_loopback.cc", 209 "screenshare_loopback.cc",
186 ] 210 ]
187 211
188 deps = [ 212 deps = [
189 ":video_quality_test", 213 ":video_quality_test",
190 "../rtc_base:rtc_base_approved", 214 "../rtc_base:rtc_base_approved",
191 "../system_wrappers:metrics_default", 215 "../system_wrappers:metrics_default",
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 ] 329 ]
306 if (!build_with_chromium && is_clang) { 330 if (!build_with_chromium && is_clang) {
307 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 331 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
308 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 332 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
309 } 333 }
310 if (rtc_use_h264) { 334 if (rtc_use_h264) {
311 defines += [ "WEBRTC_USE_H264" ] 335 defines += [ "WEBRTC_USE_H264" ]
312 } 336 }
313 } 337 }
314 } 338 }
OLDNEW
« no previous file with comments | « webrtc/test/fake_network_pipe.cc ('k') | webrtc/video/video_quality_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698