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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)audio_codec_s
peed_tests<(SHARED_LIB_SUFFIX)', | 209 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)audio_codec_s
peed_tests<(SHARED_LIB_SUFFIX)', |
210 }, | 210 }, |
211 'dependencies': [ | 211 'dependencies': [ |
212 '<(webrtc_root)/modules/modules.gyp:audio_codec_speed_tests', | 212 '<(webrtc_root)/modules/modules.gyp:audio_codec_speed_tests', |
213 ], | 213 ], |
214 'includes': [ | 214 'includes': [ |
215 '../../build/apk_test.gypi', | 215 '../../build/apk_test.gypi', |
216 ], | 216 ], |
217 }, | 217 }, |
218 { | 218 { |
219 'target_name': 'video_capture_tests_apk', | |
220 'type': 'none', | |
221 'variables': { | |
222 'test_suite_name': 'video_capture_tests', | |
223 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)video_captur
e_tests<(SHARED_LIB_SUFFIX)', | |
224 }, | |
225 'dependencies': [ | |
226 '<(webrtc_root)/modules/modules.gyp:video_capture_tests', | |
227 'video_capture_java', | |
228 ], | |
229 'includes': [ | |
230 '../../build/apk_test.gypi', | |
231 ], | |
232 }, | |
233 { | |
234 # Used only by video_capture_tests_apk above, and impossible to use in the | |
235 # standalone build, which is why it's declared here instead of under | |
236 # modules/video_capture/ (to avoid the need for a forked _noop.gyp file | |
237 # like this file has; see comment at the top of this file). | |
238 'target_name': 'video_capture_java', | |
239 'type': 'none', | |
240 'variables': { | |
241 'java_in_dir': '<(webrtc_root)/modules/video_capture/android/java', | |
242 'additional_src_dirs': [ '<(webrtc_root)/base/java/src', ], | |
243 }, | |
244 'includes': [ | |
245 '../../build/java.gypi', | |
246 ], | |
247 }, | |
248 { | |
249 'target_name': 'audio_device_java', | 219 'target_name': 'audio_device_java', |
250 'type': 'none', | 220 'type': 'none', |
251 'variables': { | 221 'variables': { |
252 'java_in_dir': '<(webrtc_root)/modules/audio_device/android/java', | 222 'java_in_dir': '<(webrtc_root)/modules/audio_device/android/java', |
253 'additional_src_dirs': [ '<(webrtc_root)/base/java/src', ], | 223 'additional_src_dirs': [ '<(webrtc_root)/base/java/src', ], |
254 'never_lint': 1, | 224 'never_lint': 1, |
255 }, | 225 }, |
256 'includes': [ | 226 'includes': [ |
257 '../../build/java.gypi', | 227 '../../build/java.gypi', |
258 ], | 228 ], |
259 }, | 229 }, |
260 ], | 230 ], |
261 } | 231 } |
262 | 232 |
263 | 233 |
OLD | NEW |