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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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', | 64 'target_name': 'peerconnection_unittests_apk', |
65 'type': 'none', | 65 'type': 'none', |
66 'variables': { | 66 'variables': { |
67 'test_suite_name': 'libjingle_peerconnection_unittest', | 67 'test_suite_name': 'peerconnection_unittests', |
68 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)libjingle_pee
rconnection_unittest<(SHARED_LIB_SUFFIX)', | 68 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)peerconnectio
n_unittests<(SHARED_LIB_SUFFIX)', |
69 }, | 69 }, |
70 'dependencies': [ | 70 'dependencies': [ |
71 '<(DEPTH)/talk/libjingle_tests.gyp:libjingle_peerconnection_unittest', | 71 '<(DEPTH)/talk/libjingle_tests.gyp:peerconnection_unittests', |
72 '<(DEPTH)/talk/libjingle.gyp:libjingle_peerconnection_java', | 72 '<(DEPTH)/talk/libjingle.gyp:libjingle_peerconnection_java', |
73 ], | 73 ], |
74 'includes': [ | 74 'includes': [ |
75 # Use webrtc copy of apk_test.gypi to allow test executables starting | 75 '../../build/apk_test.gypi', |
76 # with "lib". See http://crbug.com/543820 for more details. | |
77 '../build/apk_test.gypi', | |
78 ], | 76 ], |
79 }, | 77 }, |
80 { | 78 { |
81 'target_name': 'modules_tests_apk', | 79 'target_name': 'modules_tests_apk', |
82 'type': 'none', | 80 'type': 'none', |
83 'variables': { | 81 'variables': { |
84 'test_suite_name': 'modules_tests', | 82 'test_suite_name': 'modules_tests', |
85 '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)', |
86 }, | 84 }, |
87 'dependencies': [ | 85 'dependencies': [ |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 'never_lint': 1, | 239 'never_lint': 1, |
242 }, | 240 }, |
243 'includes': [ | 241 'includes': [ |
244 '../../build/java.gypi', | 242 '../../build/java.gypi', |
245 ], | 243 ], |
246 }, | 244 }, |
247 ], | 245 ], |
248 } | 246 } |
249 | 247 |
250 | 248 |
OLD | NEW |