OLD | NEW |
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2013 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 # This file exists in two versions. A no-op version under | 9 # This file exists in two versions. A no-op version under |
10 # webrtc/build/apk_tests_noop.gyp and this one. This gyp file builds the apk | 10 # webrtc/build/apk_tests_noop.gyp and this one. This gyp file builds the apk |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)webrtc_perf_t
ests<(SHARED_LIB_SUFFIX)', | 195 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)webrtc_perf_t
ests<(SHARED_LIB_SUFFIX)', |
196 }, | 196 }, |
197 'dependencies': [ | 197 'dependencies': [ |
198 '<(webrtc_root)/webrtc.gyp:webrtc_perf_tests', | 198 '<(webrtc_root)/webrtc.gyp:webrtc_perf_tests', |
199 ], | 199 ], |
200 'includes': [ | 200 'includes': [ |
201 '../../build/apk_test.gypi', | 201 '../../build/apk_test.gypi', |
202 ], | 202 ], |
203 }, | 203 }, |
204 { | 204 { |
| 205 'target_name': 'webrtc_nonparallel_tests_apk', |
| 206 'type': 'none', |
| 207 'variables': { |
| 208 'test_suite_name': 'webrtc_nonparallel_tests', |
| 209 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)webrtc_nonpar
allel_tests<(SHARED_LIB_SUFFIX)', |
| 210 }, |
| 211 'dependencies': [ |
| 212 '<(webrtc_root)/webrtc.gyp:webrtc_nonparallel_tests', |
| 213 ], |
| 214 'includes': [ |
| 215 '../../build/apk_test.gypi', |
| 216 ], |
| 217 }, |
| 218 { |
205 'target_name': 'audio_codec_speed_tests_apk', | 219 'target_name': 'audio_codec_speed_tests_apk', |
206 'type': 'none', | 220 'type': 'none', |
207 'variables': { | 221 'variables': { |
208 'test_suite_name': 'audio_codec_speed_tests', | 222 'test_suite_name': 'audio_codec_speed_tests', |
209 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)audio_codec_s
peed_tests<(SHARED_LIB_SUFFIX)', | 223 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)audio_codec_s
peed_tests<(SHARED_LIB_SUFFIX)', |
210 }, | 224 }, |
211 'dependencies': [ | 225 'dependencies': [ |
212 '<(webrtc_root)/modules/modules.gyp:audio_codec_speed_tests', | 226 '<(webrtc_root)/modules/modules.gyp:audio_codec_speed_tests', |
213 ], | 227 ], |
214 'includes': [ | 228 'includes': [ |
215 '../../build/apk_test.gypi', | 229 '../../build/apk_test.gypi', |
216 ], | 230 ], |
217 }, | 231 }, |
218 { | 232 { |
219 'target_name': 'audio_device_java', | 233 'target_name': 'audio_device_java', |
220 'type': 'none', | 234 'type': 'none', |
221 'variables': { | 235 'variables': { |
222 'java_in_dir': '<(webrtc_root)/modules/audio_device/android/java', | 236 'java_in_dir': '<(webrtc_root)/modules/audio_device/android/java', |
223 'additional_src_dirs': [ '<(webrtc_root)/base/java/src', ], | 237 'additional_src_dirs': [ '<(webrtc_root)/base/java/src', ], |
224 'never_lint': 1, | 238 'never_lint': 1, |
225 }, | 239 }, |
226 'includes': [ | 240 'includes': [ |
227 '../../build/java.gypi', | 241 '../../build/java.gypi', |
228 ], | 242 ], |
229 }, | 243 }, |
230 ], | 244 ], |
231 } | 245 } |
232 | 246 |
233 | 247 |
OLD | NEW |