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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 'type': 'static_library', | 104 'type': 'static_library', |
105 'dependencies': [ | 105 'dependencies': [ |
106 'audioproc_debug_proto', | 106 'audioproc_debug_proto', |
107 ], | 107 ], |
108 'sources': [ | 108 'sources': [ |
109 'test/protobuf_utils.cc', | 109 'test/protobuf_utils.cc', |
110 'test/protobuf_utils.h', | 110 'test/protobuf_utils.h', |
111 ], | 111 ], |
112 }, | 112 }, |
113 { | 113 { |
114 'target_name': 'audioproc', | |
115 'type': 'executable', | |
116 'dependencies': [ | |
117 'audio_processing', | |
118 'audioproc_debug_proto', | |
119 'audioproc_test_utils', | |
120 'audioproc_protobuf_utils', | |
121 '<(DEPTH)/testing/gtest.gyp:gtest', | |
122 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | |
123 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', | |
124 '<(webrtc_root)/test/test.gyp:test_support', | |
125 ], | |
126 'sources': [ 'test/process_test.cc', ], | |
127 }, | |
128 { | |
129 'target_name': 'audioproc_f', | 114 'target_name': 'audioproc_f', |
130 'type': 'executable', | 115 'type': 'executable', |
131 'dependencies': [ | 116 'dependencies': [ |
132 'audio_processing', | 117 'audio_processing', |
133 'audioproc_debug_proto', | 118 'audioproc_debug_proto', |
134 'audioproc_test_utils', | 119 'audioproc_test_utils', |
135 'audioproc_protobuf_utils', | 120 'audioproc_protobuf_utils', |
136 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', | 121 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', |
137 '<(webrtc_root)/test/test.gyp:test_support', | 122 '<(webrtc_root)/test/test.gyp:test_support', |
138 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 123 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
(...skipping 18 matching lines...) Expand all Loading... |
157 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 142 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
158 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 143 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
159 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 144 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
160 ], | 145 ], |
161 'sources': [ 'test/unpack.cc', ], | 146 'sources': [ 'test/unpack.cc', ], |
162 }, | 147 }, |
163 ], | 148 ], |
164 }], | 149 }], |
165 ], | 150 ], |
166 } | 151 } |
OLD | NEW |