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", |
301 "video_capturer.h", | 302 "video_capturer.h", |
302 "win/run_loop_win.cc", | 303 "win/run_loop_win.cc", |
303 ] | 304 ] |
304 if (!is_win) { | 305 if (!is_win) { |
305 sources += [ | 306 sources += [ |
306 "run_loop.cc", | 307 "run_loop.cc", |
307 "run_loop.h", | 308 "run_loop.h", |
308 ] | 309 ] |
309 } | 310 } |
310 | 311 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 396 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
396 } | 397 } |
397 | 398 |
398 deps = [ | 399 deps = [ |
399 ":test_support", | 400 ":test_support", |
400 ":video_test_common", | 401 ":video_test_common", |
401 "../modules/media_file", | 402 "../modules/media_file", |
402 "//testing/gtest", | 403 "//testing/gtest", |
403 ] | 404 ] |
404 } | 405 } |
OLD | NEW |