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

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

Issue 2257413002: Replace interface VideoCapturerInput with VideoSinkInterface. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Addressed code review comments. Created 4 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
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("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 "mock_transport.h", 291 "mock_transport.h",
292 "mock_voe_channel_proxy.h", 292 "mock_voe_channel_proxy.h",
293 "mock_voice_engine.h", 293 "mock_voice_engine.h",
294 "null_transport.cc", 294 "null_transport.cc",
295 "null_transport.h", 295 "null_transport.h",
296 "rtp_rtcp_observer.h", 296 "rtp_rtcp_observer.h",
297 "statistics.cc", 297 "statistics.cc",
298 "statistics.h", 298 "statistics.h",
299 "vcm_capturer.cc", 299 "vcm_capturer.cc",
300 "vcm_capturer.h", 300 "vcm_capturer.h",
301 "video_capturer.cc",
302 "video_capturer.h", 301 "video_capturer.h",
303 "win/run_loop_win.cc", 302 "win/run_loop_win.cc",
304 ] 303 ]
305 if (!is_win) { 304 if (!is_win) {
306 sources += [ 305 sources += [
307 "run_loop.cc", 306 "run_loop.cc",
308 "run_loop.h", 307 "run_loop.h",
309 ] 308 ]
310 } 309 }
311 310
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 396 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
398 } 397 }
399 398
400 deps = [ 399 deps = [
401 ":test_support", 400 ":test_support",
402 ":video_test_common", 401 ":video_test_common",
403 "../modules/media_file", 402 "../modules/media_file",
404 "//testing/gtest", 403 "//testing/gtest",
405 ] 404 ]
406 } 405 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698