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 236 matching lines...) Loading... |
247 "audio_coding/audio_network_adaptor/frame_length_controller_unittest.cc", | 247 "audio_coding/audio_network_adaptor/frame_length_controller_unittest.cc", |
248 "audio_coding/audio_network_adaptor/mock/mock_controller.h", | 248 "audio_coding/audio_network_adaptor/mock/mock_controller.h", |
249 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", | 249 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", |
250 "audio_coding/audio_network_adaptor/smoothing_filter_unittest.cc", | 250 "audio_coding/audio_network_adaptor/smoothing_filter_unittest.cc", |
251 ] | 251 ] |
252 deps = [ | 252 deps = [ |
253 "audio_coding:audio_network_adaptor", | 253 "audio_coding:audio_network_adaptor", |
254 "//testing/gmock", | 254 "//testing/gmock", |
255 "//testing/gtest", | 255 "//testing/gtest", |
256 ] | 256 ] |
| 257 if (rtc_enable_protobuf) { |
| 258 deps += [ "audio_coding:ana_config_proto" ] |
| 259 defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ] |
| 260 } |
257 if (is_clang) { | 261 if (is_clang) { |
258 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 262 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
259 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 263 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
260 } | 264 } |
261 } | 265 } |
262 | 266 |
263 rtc_test("modules_unittests") { | 267 rtc_test("modules_unittests") { |
264 testonly = true | 268 testonly = true |
265 | 269 |
266 defines = audio_coding_defines | 270 defines = audio_coding_defines |
(...skipping 423 matching lines...) Loading... |
690 sources += [ | 694 sources += [ |
691 "audio_device/ios/audio_device_unittest_ios.cc", | 695 "audio_device/ios/audio_device_unittest_ios.cc", |
692 "audio_device/ios/objc/RTCAudioSessionTest.mm", | 696 "audio_device/ios/objc/RTCAudioSessionTest.mm", |
693 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", | 697 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", |
694 ] | 698 ] |
695 | 699 |
696 ldflags = [ "-ObjC" ] | 700 ldflags = [ "-ObjC" ] |
697 } | 701 } |
698 } | 702 } |
699 } | 703 } |
OLD | NEW |