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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 ":rtp_test_utils", | 325 ":rtp_test_utils", |
326 ":test_support", | 326 ":test_support", |
327 "..:webrtc_common", | 327 "..:webrtc_common", |
328 "../api:transport_api", | 328 "../api:transport_api", |
329 "../audio", | 329 "../audio", |
330 "../base:rtc_base_approved", | 330 "../base:rtc_base_approved", |
331 "../call", | 331 "../call", |
332 "../modules/audio_device:mock_audio_device", | 332 "../modules/audio_device:mock_audio_device", |
333 "../modules/audio_mixer:audio_mixer_impl", | 333 "../modules/audio_mixer:audio_mixer_impl", |
334 "../modules/audio_processing", | 334 "../modules/audio_processing", |
335 "../modules/media_file", | |
336 "../modules/video_capture:video_capture", | 335 "../modules/video_capture:video_capture", |
337 "../modules/video_capture:video_capture_module", | 336 "../modules/video_capture:video_capture_module", |
338 "../video", | 337 "../video", |
339 "//testing/gmock", | 338 "//testing/gmock", |
340 "//testing/gtest", | 339 "//testing/gtest", |
341 ] | 340 ] |
342 } | 341 } |
343 | 342 |
344 config("test_renderer_exported_config") { | 343 config("test_renderer_exported_config") { |
345 if (is_win && is_clang) { | 344 if (is_win && is_clang) { |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 405 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
407 } | 406 } |
408 | 407 |
409 deps = [ | 408 deps = [ |
410 ":test_support", | 409 ":test_support", |
411 ":video_test_common", | 410 ":video_test_common", |
412 "../modules/media_file", | 411 "../modules/media_file", |
413 "//testing/gtest", | 412 "//testing/gtest", |
414 ] | 413 ] |
415 } | 414 } |
OLD | NEW |