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

Side by Side Diff: webrtc/build/apk_tests.gyp

Issue 1511633002: Add APK targets to build libjingle tests for Android. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Reverted <gtest of libjingle_media_unittests and p2p. Created 5 years 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) 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)common_video_ unittests<(SHARED_LIB_SUFFIX)', 54 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)common_video_ unittests<(SHARED_LIB_SUFFIX)',
55 }, 55 },
56 'dependencies': [ 56 'dependencies': [
57 '<(webrtc_root)/common_video/common_video_unittests.gyp:common_video_uni ttests', 57 '<(webrtc_root)/common_video/common_video_unittests.gyp:common_video_uni ttests',
58 ], 58 ],
59 'includes': [ 59 'includes': [
60 '../../build/apk_test.gypi', 60 '../../build/apk_test.gypi',
61 ], 61 ],
62 }, 62 },
63 { 63 {
64 'target_name': 'libjingle_peerconnection_unittest_apk',
65 'type': 'none',
66 'variables': {
67 'test_suite_name': 'libjingle_peerconnection_unittest',
68 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)libjingle_pee rconnection_unittest<(SHARED_LIB_SUFFIX)',
69 },
70 'dependencies': [
71 '<(DEPTH)/talk/libjingle_tests.gyp:libjingle_peerconnection_unittest',
72 '<(DEPTH)/talk/libjingle.gyp:libjingle_peerconnection_java',
73 ],
74 'includes': [
75 '../build/apk_test.gypi',
kjellander_webrtc 2015/12/14 04:37:50 Add a comment here about why we have to use our ow
perkj_webrtc 2015/12/14 07:22:21 Done.
76 ],
77 },
78 {
64 'target_name': 'modules_tests_apk', 79 'target_name': 'modules_tests_apk',
65 'type': 'none', 80 'type': 'none',
66 'variables': { 81 'variables': {
67 'test_suite_name': 'modules_tests', 82 'test_suite_name': 'modules_tests',
68 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)modules_tests <(SHARED_LIB_SUFFIX)', 83 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)modules_tests <(SHARED_LIB_SUFFIX)',
69 }, 84 },
70 'dependencies': [ 85 'dependencies': [
71 '<(webrtc_root)/modules/modules.gyp:modules_tests', 86 '<(webrtc_root)/modules/modules.gyp:modules_tests',
72 ], 87 ],
73 'includes': [ 88 'includes': [
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 'never_lint': 1, 239 'never_lint': 1,
225 }, 240 },
226 'includes': [ 241 'includes': [
227 '../../build/java.gypi', 242 '../../build/java.gypi',
228 ], 243 ],
229 }, 244 },
230 ], 245 ],
231 } 246 }
232 247
233 248
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698