Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(580)

Side by Side Diff: webrtc/audio/BUILD.gn

Issue 3007383002: Replace voe_auto_test (Closed)
Patch Set: rebase Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 if (!is_android && !is_ios) { 67 if (!is_android && !is_ios) {
68 visibility = [ "..:video_engine_tests" ] 68 visibility = [ "..:video_engine_tests" ]
69 } 69 }
70 70
71 # TODO(kjellander): Remove (bugs.webrtc.org/6828) 71 # TODO(kjellander): Remove (bugs.webrtc.org/6828)
72 # This needs remote_bitrate_estimator to be moved to webrtc/api first. 72 # This needs remote_bitrate_estimator to be moved to webrtc/api first.
73 check_includes = false 73 check_includes = false
74 74
75 sources = [ 75 sources = [
76 "audio_receive_stream_unittest.cc", 76 "audio_receive_stream_unittest.cc",
77 "audio_send_stream_tests.cc",
77 "audio_send_stream_unittest.cc", 78 "audio_send_stream_unittest.cc",
78 "audio_state_unittest.cc", 79 "audio_state_unittest.cc",
79 "test/audio_end_to_end_test.cc", 80 "test/audio_end_to_end_test.cc",
80 "test/audio_end_to_end_test.h", 81 "test/audio_end_to_end_test.h",
81 "test/audio_stats_test.cc", 82 "test/audio_stats_test.cc",
82 "time_interval_unittest.cc", 83 "time_interval_unittest.cc",
83 ] 84 ]
84 deps = [ 85 deps = [
85 ":audio", 86 ":audio",
86 "../api:mock_audio_mixer", 87 "../api:mock_audio_mixer",
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 data = [ 172 data = [
172 "//resources/voice_engine/audio_dtx16.wav", 173 "//resources/voice_engine/audio_dtx16.wav",
173 ] 174 ]
174 175
175 if (!build_with_chromium && is_clang) { 176 if (!build_with_chromium && is_clang) {
176 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 177 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
177 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 178 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
178 } 179 }
179 } 180 }
180 } 181 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698