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