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

Side by Side Diff: webrtc/voice_engine/voice_engine.gyp

Issue 1882963003: Add isolate files for Android tests (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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
OLDNEW
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 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 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 ['OS=="android"', { 248 ['OS=="android"', {
249 'targets': [ 249 'targets': [
250 { 250 {
251 'target_name': 'voice_engine_unittests_apk_target', 251 'target_name': 'voice_engine_unittests_apk_target',
252 'type': 'none', 252 'type': 'none',
253 'dependencies': [ 253 'dependencies': [
254 '<(apk_tests_path):voice_engine_unittests_apk', 254 '<(apk_tests_path):voice_engine_unittests_apk',
255 ], 255 ],
256 }, 256 },
257 ], 257 ],
258 'conditions': [
259 ['test_isolation_mode != "noop"',
260 {
261 'targets': [
262 {
263 'target_name': 'voice_engine_unittests_apk_run',
264 'type': 'none',
265 'dependencies': [
266 '<(apk_tests_path):voice_engine_unittests_apk',
267 ],
268 'includes': [
269 '../build/isolate.gypi',
270 ],
271 'sources': [
272 'voice_engine_unittests_apk.isolate',
273 ],
274 },
275 ],
276 },
277 ],
278 ],
258 }], 279 }],
259 ['test_isolation_mode != "noop"', { 280 ['test_isolation_mode != "noop"', {
260 'targets': [ 281 'targets': [
261 { 282 {
262 'target_name': 'voice_engine_unittests_run', 283 'target_name': 'voice_engine_unittests_run',
263 'type': 'none', 284 'type': 'none',
264 'dependencies': [ 285 'dependencies': [
265 'voice_engine_unittests', 286 'voice_engine_unittests',
266 ], 287 ],
267 'includes': [ 288 'includes': [
(...skipping 15 matching lines...) Expand all
283 'sources': [ 304 'sources': [
284 'voe_auto_test.isolate', 305 'voe_auto_test.isolate',
285 ], 306 ],
286 }, 307 },
287 ], 308 ],
288 }], 309 }],
289 ], # conditions 310 ], # conditions
290 }], # include_tests==1 311 }], # include_tests==1
291 ], # conditions 312 ], # conditions
292 } 313 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698