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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 "constants.h", | 361 "constants.h", |
362 "drifting_clock.cc", | 362 "drifting_clock.cc", |
363 "drifting_clock.h", | 363 "drifting_clock.h", |
364 "encoder_settings.cc", | 364 "encoder_settings.cc", |
365 "encoder_settings.h", | 365 "encoder_settings.h", |
366 "fake_decoder.cc", | 366 "fake_decoder.cc", |
367 "fake_decoder.h", | 367 "fake_decoder.h", |
368 "fake_encoder.cc", | 368 "fake_encoder.cc", |
369 "fake_encoder.h", | 369 "fake_encoder.h", |
370 "fake_videorenderer.h", | 370 "fake_videorenderer.h", |
| 371 "file_audio_device.cc", |
| 372 "file_audio_device.h", |
371 "layer_filtering_transport.cc", | 373 "layer_filtering_transport.cc", |
372 "layer_filtering_transport.h", | 374 "layer_filtering_transport.h", |
373 "mock_transport.h", | 375 "mock_transport.h", |
374 "mock_voe_channel_proxy.h", | 376 "mock_voe_channel_proxy.h", |
375 "mock_voice_engine.h", | 377 "mock_voice_engine.h", |
376 "null_transport.cc", | 378 "null_transport.cc", |
377 "null_transport.h", | 379 "null_transport.h", |
378 "rtp_rtcp_observer.h", | 380 "rtp_rtcp_observer.h", |
379 "statistics.cc", | 381 "statistics.cc", |
380 "statistics.h", | 382 "statistics.h", |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 476 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
475 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 477 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
476 } | 478 } |
477 | 479 |
478 deps = [ | 480 deps = [ |
479 ":test_support", | 481 ":test_support", |
480 "../modules/media_file", | 482 "../modules/media_file", |
481 "//testing/gtest", | 483 "//testing/gtest", |
482 ] | 484 ] |
483 } | 485 } |
OLD | NEW |