OLD | NEW |
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2011 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 'state_search.h', | 156 'state_search.h', |
157 'swap_bytes.h', | 157 'swap_bytes.h', |
158 'unpack_bits.h', | 158 'unpack_bits.h', |
159 'vq3.h', | 159 'vq3.h', |
160 'vq4.h', | 160 'vq4.h', |
161 'window32_w32.h', | 161 'window32_w32.h', |
162 'xcorr_coef.h', | 162 'xcorr_coef.h', |
163 ], # sources | 163 ], # sources |
164 }, # ilbc | 164 }, # ilbc |
165 ], # targets | 165 ], # targets |
166 'conditions': [ | |
167 ['include_tests==1', { | |
168 'targets': [ | |
169 { | |
170 'target_name': 'ilbc_test', | |
171 'type': 'executable', | |
172 'dependencies': [ | |
173 'ilbc', | |
174 ], | |
175 'sources': [ | |
176 # The empty .cc file is a hack to get GYP to use the C++ | |
177 # linker even though all sources here are .c files; this | |
178 # is necessary because we transitively depend on | |
179 # rtc_base_approved, which calls the C++ standard library. | |
180 'test/empty.cc', | |
181 'test/iLBC_test.c', | |
182 ], | |
183 }, # ilbc_test | |
184 ], # targets | |
185 }], # include_tests | |
186 ], # conditions | |
187 } | 166 } |
OLD | NEW |