| 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 # rtc_source_set to solve name collision on bitrate_controller_unittest.cc. | 238 # rtc_source_set to solve name collision on bitrate_controller_unittest.cc. |
| 239 testonly = true | 239 testonly = true |
| 240 sources = [ | 240 sources = [ |
| 241 "audio_coding/audio_network_adaptor/audio_network_adaptor_impl_unittest.cc
", | 241 "audio_coding/audio_network_adaptor/audio_network_adaptor_impl_unittest.cc
", |
| 242 "audio_coding/audio_network_adaptor/bitrate_controller_unittest.cc", | 242 "audio_coding/audio_network_adaptor/bitrate_controller_unittest.cc", |
| 243 "audio_coding/audio_network_adaptor/channel_controller_unittest.cc", | 243 "audio_coding/audio_network_adaptor/channel_controller_unittest.cc", |
| 244 "audio_coding/audio_network_adaptor/controller_manager_unittest.cc", | 244 "audio_coding/audio_network_adaptor/controller_manager_unittest.cc", |
| 245 "audio_coding/audio_network_adaptor/dtx_controller_unittest.cc", | 245 "audio_coding/audio_network_adaptor/dtx_controller_unittest.cc", |
| 246 "audio_coding/audio_network_adaptor/mock/mock_controller.h", | 246 "audio_coding/audio_network_adaptor/mock/mock_controller.h", |
| 247 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", | 247 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", |
| 248 "audio_coding/audio_network_adaptor/smoothing_filter_unittest.cc", |
| 248 ] | 249 ] |
| 249 deps = [ | 250 deps = [ |
| 250 "audio_coding:audio_network_adaptor", | 251 "audio_coding:audio_network_adaptor", |
| 251 "//testing/gmock", | 252 "//testing/gmock", |
| 252 "//testing/gtest", | 253 "//testing/gtest", |
| 253 ] | 254 ] |
| 254 if (is_clang) { | 255 if (is_clang) { |
| 255 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 256 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 256 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 257 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 257 } | 258 } |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 sources += [ | 688 sources += [ |
| 688 "audio_device/ios/audio_device_unittest_ios.cc", | 689 "audio_device/ios/audio_device_unittest_ios.cc", |
| 689 "audio_device/ios/objc/RTCAudioSessionTest.mm", | 690 "audio_device/ios/objc/RTCAudioSessionTest.mm", |
| 690 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", | 691 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", |
| 691 ] | 692 ] |
| 692 | 693 |
| 693 ldflags = [ "-ObjC" ] | 694 ldflags = [ "-ObjC" ] |
| 694 } | 695 } |
| 695 } | 696 } |
| 696 } | 697 } |
| OLD | NEW |