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/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 "mock_transport.h", | 388 "mock_transport.h", |
389 "mock_voe_channel_proxy.h", | 389 "mock_voe_channel_proxy.h", |
390 "mock_voice_engine.h", | 390 "mock_voice_engine.h", |
391 "null_transport.cc", | 391 "null_transport.cc", |
392 "null_transport.h", | 392 "null_transport.h", |
393 "rtp_rtcp_observer.h", | 393 "rtp_rtcp_observer.h", |
394 "statistics.cc", | 394 "statistics.cc", |
395 "statistics.h", | 395 "statistics.h", |
396 "vcm_capturer.cc", | 396 "vcm_capturer.cc", |
397 "vcm_capturer.h", | 397 "vcm_capturer.h", |
398 "video_capturer.cc", | |
399 "video_capturer.h", | 398 "video_capturer.h", |
400 "win/run_loop_win.cc", | 399 "win/run_loop_win.cc", |
401 ] | 400 ] |
402 if (!is_win) { | 401 if (!is_win) { |
403 sources += [ | 402 sources += [ |
404 "run_loop.cc", | 403 "run_loop.cc", |
405 "run_loop.h", | 404 "run_loop.h", |
406 ] | 405 ] |
407 } | 406 } |
408 | 407 |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 configs -= [ "//build/config/clang:find_bad_constructs" ] | 500 configs -= [ "//build/config/clang:find_bad_constructs" ] |
502 } | 501 } |
503 | 502 |
504 deps = [ | 503 deps = [ |
505 ":test_support", | 504 ":test_support", |
506 ":video_test_common", | 505 ":video_test_common", |
507 "../modules/media_file", | 506 "../modules/media_file", |
508 "//testing/gtest", | 507 "//testing/gtest", |
509 ] | 508 ] |
510 } | 509 } |
OLD | NEW |