| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 sources = [ | 255 sources = [ |
| 256 "audio_coding/audio_network_adaptor/audio_network_adaptor_impl_unittest.cc
", | 256 "audio_coding/audio_network_adaptor/audio_network_adaptor_impl_unittest.cc
", |
| 257 "audio_coding/audio_network_adaptor/bitrate_controller_unittest.cc", | 257 "audio_coding/audio_network_adaptor/bitrate_controller_unittest.cc", |
| 258 "audio_coding/audio_network_adaptor/channel_controller_unittest.cc", | 258 "audio_coding/audio_network_adaptor/channel_controller_unittest.cc", |
| 259 "audio_coding/audio_network_adaptor/controller_manager_unittest.cc", | 259 "audio_coding/audio_network_adaptor/controller_manager_unittest.cc", |
| 260 "audio_coding/audio_network_adaptor/dtx_controller_unittest.cc", | 260 "audio_coding/audio_network_adaptor/dtx_controller_unittest.cc", |
| 261 "audio_coding/audio_network_adaptor/fec_controller_unittest.cc", | 261 "audio_coding/audio_network_adaptor/fec_controller_unittest.cc", |
| 262 "audio_coding/audio_network_adaptor/frame_length_controller_unittest.cc", | 262 "audio_coding/audio_network_adaptor/frame_length_controller_unittest.cc", |
| 263 "audio_coding/audio_network_adaptor/mock/mock_controller.h", | 263 "audio_coding/audio_network_adaptor/mock/mock_controller.h", |
| 264 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", | 264 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", |
| 265 "audio_coding/audio_network_adaptor/smoothing_filter_unittest.cc", | |
| 266 ] | 265 ] |
| 267 deps = [ | 266 deps = [ |
| 268 "audio_coding:audio_network_adaptor", | 267 "audio_coding:audio_network_adaptor", |
| 269 "//testing/gmock", | 268 "//testing/gmock", |
| 270 "//testing/gtest", | 269 "//testing/gtest", |
| 271 ] | 270 ] |
| 272 if (rtc_enable_protobuf) { | 271 if (rtc_enable_protobuf) { |
| 273 deps += [ "audio_coding:ana_config_proto" ] | 272 deps += [ "audio_coding:ana_config_proto" ] |
| 274 defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ] | 273 defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ] |
| 275 } | 274 } |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 741 "../test:test_common", | 740 "../test:test_common", |
| 742 "../test:test_support_main", | 741 "../test:test_support_main", |
| 743 "remote_bitrate_estimator:bwe_simulator_lib", | 742 "remote_bitrate_estimator:bwe_simulator_lib", |
| 744 "video_capture", | 743 "video_capture", |
| 745 "//testing/gmock", | 744 "//testing/gmock", |
| 746 "//testing/gtest", | 745 "//testing/gtest", |
| 747 "//third_party/gflags", | 746 "//third_party/gflags", |
| 748 ] | 747 ] |
| 749 } | 748 } |
| 750 } | 749 } |
| OLD | NEW |