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

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

Issue 2080563002: Workaround java.gypi inclusion error in Chromium builds. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Changes to all.gyp Created 4 years, 6 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
« no previous file with comments | « webrtc/api/api_tests.gyp ('k') | webrtc/webrtc_examples.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/android_tests_noop.gyp and this one. This gyp file builds the 10 # webrtc/build/android_tests_noop.gyp and this one. This gyp file builds the
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'target_name': 'peerconnection_unittests_apk', 119 'target_name': 'peerconnection_unittests_apk',
120 'type': 'none', 120 'type': 'none',
121 'variables': { 121 'variables': {
122 'shard_timeout': 900, 122 'shard_timeout': 900,
123 'test_suite_name': 'peerconnection_unittests', 123 'test_suite_name': 'peerconnection_unittests',
124 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)peerconnectio n_unittests<(SHARED_LIB_SUFFIX)', 124 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)peerconnectio n_unittests<(SHARED_LIB_SUFFIX)',
125 'isolate_file': '../api/peerconnection_unittests.isolate', 125 'isolate_file': '../api/peerconnection_unittests.isolate',
126 }, 126 },
127 'dependencies': [ 127 'dependencies': [
128 '<(webrtc_root)/api/api_tests.gyp:peerconnection_unittests', 128 '<(webrtc_root)/api/api_tests.gyp:peerconnection_unittests',
129 '<(webrtc_root)/api/api.gyp:libjingle_peerconnection_java', 129 '<(webrtc_root)/api/api_java.gyp:libjingle_peerconnection_java',
130 ], 130 ],
131 'includes': [ 131 'includes': [
132 '../../build/apk_test.gypi', 132 '../../build/apk_test.gypi',
133 ], 133 ],
134 }, 134 },
135 { 135 {
136 'target_name': 'rtc_unittests_apk', 136 'target_name': 'rtc_unittests_apk',
137 'type': 'none', 137 'type': 'none',
138 'variables': { 138 'variables': {
139 'shard_timeout': 900, 139 'shard_timeout': 900,
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 '<(webrtc_root)/webrtc.gyp:webrtc_nonparallel_tests', 257 '<(webrtc_root)/webrtc.gyp:webrtc_nonparallel_tests',
258 ], 258 ],
259 'includes': [ 259 'includes': [
260 '../../build/apk_test.gypi', 260 '../../build/apk_test.gypi',
261 ], 261 ],
262 }, 262 },
263 { 263 {
264 'target_name': 'android_junit_tests', 264 'target_name': 'android_junit_tests',
265 'type': 'none', 265 'type': 'none',
266 'dependencies': [ 266 'dependencies': [
267 '<(webrtc_root)/api/api.gyp:libjingle_peerconnection_java', 267 '<(webrtc_root)/api/api_java.gyp:libjingle_peerconnection_java',
268 '<(DEPTH)/base/base.gyp:base_java', 268 '<(DEPTH)/base/base.gyp:base_java',
269 '<(DEPTH)/base/base.gyp:base_java_test_support', 269 '<(DEPTH)/base/base.gyp:base_java_test_support',
270 '<(DEPTH)/base/base.gyp:base_junit_test_support', 270 '<(DEPTH)/base/base.gyp:base_junit_test_support',
271 ], 271 ],
272 'variables': { 272 'variables': {
273 'main_class': 'org.chromium.testing.local.JunitTestMain', 273 'main_class': 'org.chromium.testing.local.JunitTestMain',
274 'src_paths': [ 274 'src_paths': [
275 '../androidjunit/', 275 '../androidjunit/',
276 ], 276 ],
277 'test_type': 'junit', 277 'test_type': 'junit',
(...skipping 11 matching lines...) Expand all
289 'java_in_dir': '<(webrtc_root)/modules/audio_device/android/java', 289 'java_in_dir': '<(webrtc_root)/modules/audio_device/android/java',
290 'additional_src_dirs': [ '<(webrtc_root)/base/java/src', ], 290 'additional_src_dirs': [ '<(webrtc_root)/base/java/src', ],
291 'never_lint': 1, 291 'never_lint': 1,
292 }, 292 },
293 'includes': [ 293 'includes': [
294 '../../build/java.gypi', 294 '../../build/java.gypi',
295 ], 295 ],
296 }, 296 },
297 ], 297 ],
298 } 298 }
OLDNEW
« no previous file with comments | « webrtc/api/api_tests.gyp ('k') | webrtc/webrtc_examples.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698