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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 "..:webrtc_common", | 440 "..:webrtc_common", |
441 "../api:transport_api", | 441 "../api:transport_api", |
442 "../api:video_frame_api", | 442 "../api:video_frame_api", |
443 "../api/audio_codecs:builtin_audio_decoder_factory", | 443 "../api/audio_codecs:builtin_audio_decoder_factory", |
444 "../api/video_codecs:video_codecs_api", | 444 "../api/video_codecs:video_codecs_api", |
445 "../audio", | 445 "../audio", |
446 "../base:rtc_base_approved", | 446 "../base:rtc_base_approved", |
447 "../base:rtc_task_queue", | 447 "../base:rtc_task_queue", |
448 "../call", | 448 "../call", |
449 "../logging:rtc_event_log_api", | 449 "../logging:rtc_event_log_api", |
| 450 "../modules/audio_coding:builtin_audio_encoder_factory", |
450 "../modules/audio_device:mock_audio_device", | 451 "../modules/audio_device:mock_audio_device", |
451 "../modules/audio_mixer:audio_mixer_impl", | 452 "../modules/audio_mixer:audio_mixer_impl", |
452 "../modules/audio_processing", | 453 "../modules/audio_processing", |
453 "../modules/rtp_rtcp:rtp_rtcp", | 454 "../modules/rtp_rtcp:rtp_rtcp", |
454 "../modules/video_coding:webrtc_h264", | 455 "../modules/video_coding:webrtc_h264", |
455 "../modules/video_coding:webrtc_vp8", | 456 "../modules/video_coding:webrtc_vp8", |
456 "../modules/video_coding:webrtc_vp9", | 457 "../modules/video_coding:webrtc_vp9", |
457 "../system_wrappers", | 458 "../system_wrappers", |
458 "../video", | 459 "../video", |
459 "../voice_engine", | 460 "../voice_engine", |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 "mock_audio_decoder.h", | 547 "mock_audio_decoder.h", |
547 "mock_audio_decoder_factory.h", | 548 "mock_audio_decoder_factory.h", |
548 ] | 549 ] |
549 deps = [ | 550 deps = [ |
550 ":test_support", | 551 ":test_support", |
551 "../api/audio_codecs:audio_codecs_api", | 552 "../api/audio_codecs:audio_codecs_api", |
552 "../api/audio_codecs:builtin_audio_decoder_factory", | 553 "../api/audio_codecs:builtin_audio_decoder_factory", |
553 "../base:rtc_base_approved", | 554 "../base:rtc_base_approved", |
554 ] | 555 ] |
555 } | 556 } |
OLD | NEW |