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

Side by Side Diff: webrtc/modules/audio_processing/audio_processing_tests.gypi

Issue 1708353002: Drop support for playing output through aplay in intelligibility_proc (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove suppression for audio_processing_tests Created 4 years, 10 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 | « no previous file | webrtc/modules/audio_processing/intelligibility/test/intelligibility_proc.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) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 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 { 9 {
10 'targets': [ 10 'targets': [
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'dependencies': [ 65 'dependencies': [
66 'audioproc_test_utils', 66 'audioproc_test_utils',
67 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 67 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
68 '<(DEPTH)/testing/gtest.gyp:gtest', 68 '<(DEPTH)/testing/gtest.gyp:gtest',
69 '<(webrtc_root)/modules/modules.gyp:audio_processing', 69 '<(webrtc_root)/modules/modules.gyp:audio_processing',
70 '<(webrtc_root)/test/test.gyp:test_support', 70 '<(webrtc_root)/test/test.gyp:test_support',
71 ], 71 ],
72 'sources': [ 72 'sources': [
73 'intelligibility/test/intelligibility_proc.cc', 73 'intelligibility/test/intelligibility_proc.cc',
74 ], 74 ],
75 'conditions': [
76 ['OS=="ios"', {
77 'xcode_settings': {
78 'WARNING_CFLAGS': [
79 # Suppress compiler warnings about deprecated that triggered
80 # when moving from ios_deployment_target 7.0 to 9.0.
81 # See webrtc:5549 for more details.
82 '-Wno-deprecated-declarations',
83 ],
84 },
85 }],
86 ],
87 }, # intelligibility_proc 75 }, # intelligibility_proc
88 ], 76 ],
89 'conditions': [ 77 'conditions': [
90 ['enable_protobuf==1', { 78 ['enable_protobuf==1', {
91 'targets': [ 79 'targets': [
92 { 80 {
93 'target_name': 'audioproc_unittest_proto', 81 'target_name': 'audioproc_unittest_proto',
94 'type': 'static_library', 82 'type': 'static_library',
95 'sources': [ 'test/unittest.proto', ], 83 'sources': [ 'test/unittest.proto', ],
96 'variables': { 84 'variables': {
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' , 144 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' ,
157 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', 145 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
158 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 146 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
159 ], 147 ],
160 'sources': [ 'test/unpack.cc', ], 148 'sources': [ 'test/unpack.cc', ],
161 }, 149 },
162 ], 150 ],
163 }], 151 }],
164 ], 152 ],
165 } 153 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/intelligibility/test/intelligibility_proc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698