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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 "mock_transport.h", | 360 "mock_transport.h", |
361 "mock_voe_channel_proxy.h", | 361 "mock_voe_channel_proxy.h", |
362 "mock_voice_engine.h", | 362 "mock_voice_engine.h", |
363 "null_transport.cc", | 363 "null_transport.cc", |
364 "null_transport.h", | 364 "null_transport.h", |
365 "rtp_rtcp_observer.h", | 365 "rtp_rtcp_observer.h", |
366 "statistics.cc", | 366 "statistics.cc", |
367 "statistics.h", | 367 "statistics.h", |
368 "vcm_capturer.cc", | 368 "vcm_capturer.cc", |
369 "vcm_capturer.h", | 369 "vcm_capturer.h", |
370 "video_capturer.cc", | |
371 "video_capturer.h", | 370 "video_capturer.h", |
372 "win/run_loop_win.cc", | 371 "win/run_loop_win.cc", |
373 ] | 372 ] |
374 if (!is_win) { | 373 if (!is_win) { |
375 sources += [ | 374 sources += [ |
376 "run_loop.cc", | 375 "run_loop.cc", |
377 "run_loop.h", | 376 "run_loop.h", |
378 ] | 377 ] |
379 } | 378 } |
380 | 379 |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
466 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 465 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
467 } | 466 } |
468 | 467 |
469 deps = [ | 468 deps = [ |
470 ":test_support", | 469 ":test_support", |
471 ":video_test_common", | 470 ":video_test_common", |
472 "../modules/media_file", | 471 "../modules/media_file", |
473 "//testing/gtest", | 472 "//testing/gtest", |
474 ] | 473 ] |
475 } | 474 } |
OLD | NEW |