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

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

Issue 1419533010: Move audioproc_test_utils into enable_protobuf condition. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 1 month 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 | no next file » | 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': [
11 { 11 {
12 'target_name': 'audioproc_test_utils',
13 'type': 'static_library',
14 'dependencies': [
15 'audioproc_debug_proto',
16 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
17 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
18 ],
19 'sources': [
20 'test/audio_file_processor.cc',
21 'test/audio_file_processor.h',
22 'test/test_utils.cc',
23 'test/test_utils.h',
24 ],
25 },
26 {
27 'target_name': 'transient_suppression_test', 12 'target_name': 'transient_suppression_test',
28 'type': 'executable', 13 'type': 'executable',
29 'dependencies': [ 14 'dependencies': [
30 '<(DEPTH)/testing/gtest.gyp:gtest', 15 '<(DEPTH)/testing/gtest.gyp:gtest',
31 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 16 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
32 '<(webrtc_root)/test/test.gyp:test_support', 17 '<(webrtc_root)/test/test.gyp:test_support',
33 '<(webrtc_root)/modules/modules.gyp:audio_processing', 18 '<(webrtc_root)/modules/modules.gyp:audio_processing',
34 ], 19 ],
35 'sources': [ 20 'sources': [
36 'transient/transient_suppression_test.cc', 21 'transient/transient_suppression_test.cc',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 ], 59 ],
75 'sources': [ 60 'sources': [
76 'intelligibility/test/intelligibility_proc.cc', 61 'intelligibility/test/intelligibility_proc.cc',
77 ], 62 ],
78 }, # intelligibility_proc 63 }, # intelligibility_proc
79 ], 64 ],
80 'conditions': [ 65 'conditions': [
81 ['enable_protobuf==1', { 66 ['enable_protobuf==1', {
82 'targets': [ 67 'targets': [
83 { 68 {
69 'target_name': 'audioproc_test_utils',
70 'type': 'static_library',
71 'dependencies': [
72 'audioproc_debug_proto',
73 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
74 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
75 ],
76 'sources': [
77 'test/audio_file_processor.cc',
78 'test/audio_file_processor.h',
79 'test/test_utils.cc',
80 'test/test_utils.h',
81 ],
82 },
83 {
84 'target_name': 'audioproc_unittest_proto', 84 'target_name': 'audioproc_unittest_proto',
85 'type': 'static_library', 85 'type': 'static_library',
86 'sources': [ 'test/unittest.proto', ], 86 'sources': [ 'test/unittest.proto', ],
87 'variables': { 87 'variables': {
88 'proto_in_dir': 'test', 88 'proto_in_dir': 'test',
89 # Workaround to protect against gyp's pathname relativization when 89 # Workaround to protect against gyp's pathname relativization when
90 # this file is included by modules.gyp. 90 # this file is included by modules.gyp.
91 'proto_out_protected': 'webrtc/audio_processing', 91 'proto_out_protected': 'webrtc/audio_processing',
92 'proto_out_dir': '<(proto_out_protected)', 92 'proto_out_dir': '<(proto_out_protected)',
93 }, 93 },
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' , 143 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' ,
144 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', 144 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
145 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', 145 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
146 ], 146 ],
147 'sources': [ 'test/unpack.cc', ], 147 'sources': [ 'test/unpack.cc', ],
148 }, 148 },
149 ], 149 ],
150 }], 150 }],
151 ], 151 ],
152 } 152 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698