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

Side by Side Diff: sandbox/linux/sandbox_linux.gypi

Issue 341623003: Linux sandbox: add sandbox_linux_unittests.isolate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move isolate file to sandbox/ Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | sandbox/sandbox_linux_unittests.isolate » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['OS=="linux"', { 8 ['OS=="linux"', {
9 'compile_suid_client': 1, 9 'compile_suid_client': 1,
10 'compile_credentials': 1, 10 'compile_credentials': 1,
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 'variables': { 337 'variables': {
338 'test_suite_name': 'sandbox_linux_jni_unittests', 338 'test_suite_name': 'sandbox_linux_jni_unittests',
339 }, 339 },
340 'dependencies': [ 340 'dependencies': [
341 'sandbox_linux_jni_unittests', 341 'sandbox_linux_jni_unittests',
342 ], 342 ],
343 'includes': [ '../../build/apk_test.gypi' ], 343 'includes': [ '../../build/apk_test.gypi' ],
344 } 344 }
345 ], 345 ],
346 }], 346 }],
347 ['test_isolation_mode != "noop"', {
348 'targets': [
349 {
350 'target_name': 'sandbox_linux_unittests_run',
351 'type': 'none',
352 'dependencies': [
353 'sandbox_linux_unittests',
354 ],
355 'includes': [
356 '../../build/isolate.gypi',
357 '../sandbox_linux_unittests.isolate',
358 ],
359 'sources': [
360 '../sandbox_linux_unittests.isolate',
361 ],
362 },
363 ],
364 }],
347 ], 365 ],
348 } 366 }
OLDNEW
« no previous file with comments | « no previous file | sandbox/sandbox_linux_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698