| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |