| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 if (!is_android && !is_ios) { | 88 if (!is_android && !is_ios) { |
| 89 visibility = [ "..:video_engine_tests" ] | 89 visibility = [ "..:video_engine_tests" ] |
| 90 } | 90 } |
| 91 | 91 |
| 92 # TODO(kjellander): Remove (bugs.webrtc.org/6828) | 92 # TODO(kjellander): Remove (bugs.webrtc.org/6828) |
| 93 # This needs remote_bitrate_estimator to be moved to webrtc/api first. | 93 # This needs remote_bitrate_estimator to be moved to webrtc/api first. |
| 94 check_includes = false | 94 check_includes = false |
| 95 | 95 |
| 96 sources = [ | 96 sources = [ |
| 97 "audio_receive_stream_unittest.cc", | 97 "audio_receive_stream_unittest.cc", |
| 98 "audio_send_stream_tests.cc", |
| 98 "audio_send_stream_unittest.cc", | 99 "audio_send_stream_unittest.cc", |
| 99 "audio_state_unittest.cc", | 100 "audio_state_unittest.cc", |
| 100 "time_interval_unittest.cc", | 101 "time_interval_unittest.cc", |
| 101 ] | 102 ] |
| 102 deps = [ | 103 deps = [ |
| 103 ":audio", | 104 ":audio", |
| 104 ":audio_end_to_end_test", | 105 ":audio_end_to_end_test", |
| 105 "../api:mock_audio_mixer", | 106 "../api:mock_audio_mixer", |
| 106 "../call:rtp_receiver", | 107 "../call:rtp_receiver", |
| 107 "../modules/audio_device:mock_audio_device", | 108 "../modules/audio_device:mock_audio_device", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 data = [ | 195 data = [ |
| 195 "//resources/voice_engine/audio_dtx16.wav", | 196 "//resources/voice_engine/audio_dtx16.wav", |
| 196 ] | 197 ] |
| 197 | 198 |
| 198 if (!build_with_chromium && is_clang) { | 199 if (!build_with_chromium && is_clang) { |
| 199 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 200 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 200 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 201 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 201 } | 202 } |
| 202 } | 203 } |
| 203 } | 204 } |
| OLD | NEW |