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

Side by Side Diff: audio/BUILD.gn

Issue 3007383002: Replace voe_auto_test (Closed)
Patch Set: reviewer comment 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
« no previous file with comments | « BUILD.gn ('k') | audio/audio_send_stream_tests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | audio/audio_send_stream_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698