| OLD | NEW |
| 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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("audio_coding/audio_coding.gni") | 10 import("audio_coding/audio_coding.gni") |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "../common_video", | 68 "../common_video", |
| 69 "../media:rtc_media_base", | 69 "../media:rtc_media_base", |
| 70 "../modules/audio_coding", | 70 "../modules/audio_coding", |
| 71 "../modules/audio_coding:audio_format_conversion", | 71 "../modules/audio_coding:audio_format_conversion", |
| 72 "../modules/rtp_rtcp", | 72 "../modules/rtp_rtcp", |
| 73 "../modules/utility", | 73 "../modules/utility", |
| 74 "../modules/video_coding", | 74 "../modules/video_coding", |
| 75 "../modules/video_coding:video_codecs_test_framework", | 75 "../modules/video_coding:video_codecs_test_framework", |
| 76 "../system_wrappers", | 76 "../system_wrappers", |
| 77 "../test:test_main", | 77 "../test:test_main", |
| 78 "../test:test_support", | |
| 79 "//testing/gmock", | 78 "//testing/gmock", |
| 80 "//testing/gtest", | 79 "//testing/gtest", |
| 81 ] | 80 ] |
| 82 | 81 |
| 83 sources = [ | 82 sources = [ |
| 84 "audio_coding/test/APITest.cc", | 83 "audio_coding/test/APITest.cc", |
| 85 "audio_coding/test/Channel.cc", | 84 "audio_coding/test/Channel.cc", |
| 86 "audio_coding/test/EncodeDecodeTest.cc", | 85 "audio_coding/test/EncodeDecodeTest.cc", |
| 87 "audio_coding/test/PCMFile.cc", | 86 "audio_coding/test/PCMFile.cc", |
| 88 "audio_coding/test/PacketLossTest.cc", | 87 "audio_coding/test/PacketLossTest.cc", |
| (...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 ":audio_network_adaptor_unittests", | 642 ":audio_network_adaptor_unittests", |
| 644 "..:webrtc_common", | 643 "..:webrtc_common", |
| 645 "../api:transport_api", | 644 "../api:transport_api", |
| 646 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. | 645 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. |
| 647 "../common_audio", | 646 "../common_audio", |
| 648 "../common_video", | 647 "../common_video", |
| 649 "../system_wrappers", | 648 "../system_wrappers", |
| 650 "../test:rtp_test_utils", | 649 "../test:rtp_test_utils", |
| 651 "../test:test_common", | 650 "../test:test_common", |
| 652 "../test:test_main", | 651 "../test:test_main", |
| 653 "../test:test_support", | |
| 654 "../test:video_test_common", | 652 "../test:video_test_common", |
| 655 "audio_coding", | 653 "audio_coding", |
| 656 "audio_coding:acm_receive_test", | 654 "audio_coding:acm_receive_test", |
| 657 "audio_coding:acm_send_test", | 655 "audio_coding:acm_send_test", |
| 658 "audio_coding:builtin_audio_decoder_factory", | 656 "audio_coding:builtin_audio_decoder_factory", |
| 659 "audio_coding:cng", | 657 "audio_coding:cng", |
| 660 "audio_coding:isac_fix", | 658 "audio_coding:isac_fix", |
| 661 "audio_coding:neteq", | 659 "audio_coding:neteq", |
| 662 "audio_coding:neteq_test_support", | 660 "audio_coding:neteq_test_support", |
| 663 "audio_coding:neteq_unittest_tools", | 661 "audio_coding:neteq_unittest_tools", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 752 "../test:test_common", | 750 "../test:test_common", |
| 753 "../test:test_main", | 751 "../test:test_main", |
| 754 "remote_bitrate_estimator:bwe_simulator_lib", | 752 "remote_bitrate_estimator:bwe_simulator_lib", |
| 755 "video_capture", | 753 "video_capture", |
| 756 "//testing/gmock", | 754 "//testing/gmock", |
| 757 "//testing/gtest", | 755 "//testing/gtest", |
| 758 "//third_party/gflags", | 756 "//third_party/gflags", |
| 759 ] | 757 ] |
| 760 } | 758 } |
| 761 } | 759 } |
| OLD | NEW |