| 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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 ":audio_network_adaptor_unittests", | 638 ":audio_network_adaptor_unittests", |
| 640 "..:webrtc_common", | 639 "..:webrtc_common", |
| 641 "../api:transport_api", | 640 "../api:transport_api", |
| 642 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. | 641 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. |
| 643 "../common_audio", | 642 "../common_audio", |
| 644 "../common_video", | 643 "../common_video", |
| 645 "../system_wrappers", | 644 "../system_wrappers", |
| 646 "../test:rtp_test_utils", | 645 "../test:rtp_test_utils", |
| 647 "../test:test_common", | 646 "../test:test_common", |
| 648 "../test:test_main", | 647 "../test:test_main", |
| 649 "../test:test_support", | |
| 650 "../test:video_test_common", | 648 "../test:video_test_common", |
| 651 "audio_coding", | 649 "audio_coding", |
| 652 "audio_coding:acm_receive_test", | 650 "audio_coding:acm_receive_test", |
| 653 "audio_coding:acm_send_test", | 651 "audio_coding:acm_send_test", |
| 654 "audio_coding:builtin_audio_decoder_factory", | 652 "audio_coding:builtin_audio_decoder_factory", |
| 655 "audio_coding:cng", | 653 "audio_coding:cng", |
| 656 "audio_coding:isac_fix", | 654 "audio_coding:isac_fix", |
| 657 "audio_coding:neteq", | 655 "audio_coding:neteq", |
| 658 "audio_coding:neteq_test_support", | 656 "audio_coding:neteq_test_support", |
| 659 "audio_coding:neteq_unittest_tools", | 657 "audio_coding:neteq_unittest_tools", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 "../test:test_common", | 746 "../test:test_common", |
| 749 "../test:test_main", | 747 "../test:test_main", |
| 750 "remote_bitrate_estimator:bwe_simulator_lib", | 748 "remote_bitrate_estimator:bwe_simulator_lib", |
| 751 "video_capture", | 749 "video_capture", |
| 752 "//testing/gmock", | 750 "//testing/gmock", |
| 753 "//testing/gtest", | 751 "//testing/gtest", |
| 754 "//third_party/gflags", | 752 "//third_party/gflags", |
| 755 ] | 753 ] |
| 756 } | 754 } |
| 757 } | 755 } |
| OLD | NEW |