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

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: git cl format Created 4 years, 4 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/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 "mock_transport.h", 368 "mock_transport.h",
369 "mock_voe_channel_proxy.h", 369 "mock_voe_channel_proxy.h",
370 "mock_voice_engine.h", 370 "mock_voice_engine.h",
371 "null_transport.cc", 371 "null_transport.cc",
372 "null_transport.h", 372 "null_transport.h",
373 "rtp_rtcp_observer.h", 373 "rtp_rtcp_observer.h",
374 "statistics.cc", 374 "statistics.cc",
375 "statistics.h", 375 "statistics.h",
376 "vcm_capturer.cc", 376 "vcm_capturer.cc",
377 "vcm_capturer.h", 377 "vcm_capturer.h",
378 "video_capturer.cc",
379 "video_capturer.h", 378 "video_capturer.h",
380 "win/run_loop_win.cc", 379 "win/run_loop_win.cc",
381 ] 380 ]
382 if (!is_win) { 381 if (!is_win) {
383 sources += [ 382 sources += [
384 "run_loop.cc", 383 "run_loop.cc",
385 "run_loop.h", 384 "run_loop.h",
386 ] 385 ]
387 } 386 }
388 387
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 configs -= [ "//build/config/clang:find_bad_constructs" ] 480 configs -= [ "//build/config/clang:find_bad_constructs" ]
482 } 481 }
483 482
484 deps = [ 483 deps = [
485 ":test_support", 484 ":test_support",
486 ":video_test_common", 485 ":video_test_common",
487 "../modules/media_file", 486 "../modules/media_file",
488 "//testing/gtest", 487 "//testing/gtest",
489 ] 488 ]
490 } 489 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698