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("../webrtc.gni") | 9 import("../webrtc.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 "drifting_clock.h", | 344 "drifting_clock.h", |
345 "encoder_settings.cc", | 345 "encoder_settings.cc", |
346 "encoder_settings.h", | 346 "encoder_settings.h", |
347 "fake_audio_device.cc", | 347 "fake_audio_device.cc", |
348 "fake_audio_device.h", | 348 "fake_audio_device.h", |
349 "fake_decoder.cc", | 349 "fake_decoder.cc", |
350 "fake_decoder.h", | 350 "fake_decoder.h", |
351 "fake_encoder.cc", | 351 "fake_encoder.cc", |
352 "fake_encoder.h", | 352 "fake_encoder.h", |
353 "fake_videorenderer.h", | 353 "fake_videorenderer.h", |
| 354 "file_audio_device.cc", |
| 355 "file_audio_device.h", |
354 "layer_filtering_transport.cc", | 356 "layer_filtering_transport.cc", |
355 "layer_filtering_transport.h", | 357 "layer_filtering_transport.h", |
356 "mock_transport.h", | 358 "mock_transport.h", |
357 "mock_voe_channel_proxy.h", | 359 "mock_voe_channel_proxy.h", |
358 "mock_voice_engine.h", | 360 "mock_voice_engine.h", |
359 "null_transport.cc", | 361 "null_transport.cc", |
360 "null_transport.h", | 362 "null_transport.h", |
361 "rtp_rtcp_observer.h", | 363 "rtp_rtcp_observer.h", |
362 "statistics.cc", | 364 "statistics.cc", |
363 "statistics.h", | 365 "statistics.h", |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 459 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
458 } | 460 } |
459 | 461 |
460 deps = [ | 462 deps = [ |
461 ":test_support", | 463 ":test_support", |
462 ":video_test_common", | 464 ":video_test_common", |
463 "../modules/media_file", | 465 "../modules/media_file", |
464 "//testing/gtest", | 466 "//testing/gtest", |
465 ] | 467 ] |
466 } | 468 } |
OLD | NEW |