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

Side by Side Diff: webrtc/modules/audio_coding/codecs/ilbc/ilbc.gypi

Issue 2340773003: GYP: Remove targets inside include_tests==1 that are converted to GN. (Closed)
Patch Set: Removed more and all isolate files. Created 4 years, 3 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
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/codecs/g722/g722.gypi ('k') | webrtc/modules/audio_coding/codecs/opus/opus.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698