OLD | NEW |
---|---|
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
54 'type': 'executable', | 54 'type': 'executable', |
55 'dependencies': [ | 55 'dependencies': [ |
56 'audioproc_test_utils', | 56 'audioproc_test_utils', |
57 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 57 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
58 '<(webrtc_root)/modules/modules.gyp:audio_processing', | 58 '<(webrtc_root)/modules/modules.gyp:audio_processing', |
59 ], | 59 ], |
60 'sources': [ | 60 'sources': [ |
61 'beamformer/nonlinear_beamformer_test.cc', | 61 'beamformer/nonlinear_beamformer_test.cc', |
62 ], | 62 ], |
63 }, # nonlinear_beamformer_test | 63 }, # nonlinear_beamformer_test |
64 { | 64 # { |
hlundin-webrtc
2016/08/26 06:53:03
Is it possible to condition this on the build vari
| |
65 'target_name': 'intelligibility_proc', | 65 # 'target_name': 'intelligibility_proc', |
66 'type': 'executable', | 66 # 'type': 'executable', |
67 'dependencies': [ | 67 # 'dependencies': [ |
68 'audioproc_test_utils', | 68 # 'audioproc_test_utils', |
69 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 69 # '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
70 '<(DEPTH)/testing/gtest.gyp:gtest', | 70 # '<(DEPTH)/testing/gtest.gyp:gtest', |
71 '<(webrtc_root)/modules/modules.gyp:audio_processing', | 71 # '<(webrtc_root)/modules/modules.gyp:audio_processing', |
72 '<(webrtc_root)/test/test.gyp:test_support', | 72 # '<(webrtc_root)/test/test.gyp:test_support', |
73 ], | 73 # ], |
74 'sources': [ | 74 # 'sources': [ |
75 'intelligibility/test/intelligibility_proc.cc', | 75 # 'intelligibility/test/intelligibility_proc.cc', |
76 ], | 76 # ], |
77 }, # intelligibility_proc | 77 # }, # intelligibility_proc |
78 ], | 78 ], |
79 'conditions': [ | 79 'conditions': [ |
80 ['enable_protobuf==1', { | 80 ['enable_protobuf==1', { |
81 'targets': [ | 81 'targets': [ |
82 { | 82 { |
83 'target_name': 'audioproc_unittest_proto', | 83 'target_name': 'audioproc_unittest_proto', |
84 'type': 'static_library', | 84 'type': 'static_library', |
85 'sources': [ 'test/unittest.proto', ], | 85 'sources': [ 'test/unittest.proto', ], |
86 'variables': { | 86 'variables': { |
87 'proto_in_dir': 'test', | 87 'proto_in_dir': 'test', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
150 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' , | 150 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' , |
151 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 151 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
152 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 152 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
153 ], | 153 ], |
154 'sources': [ 'test/unpack.cc', ], | 154 'sources': [ 'test/unpack.cc', ], |
155 }, | 155 }, |
156 ], | 156 ], |
157 }], | 157 }], |
158 ], | 158 ], |
159 } | 159 } |
OLD | NEW |