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

Side by Side Diff: crypto/crypto_unittests.isolate

Issue 875353004: Isolate crypto_unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « crypto/crypto.gyp ('k') | testing/buildbot/chromium.chromiumos.json » ('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 2015 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 'conditions': [ 5 'conditions': [
6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
7 'variables': {
8 'files': [
9 'test/data/',
10 ],
11 },
12 }],
13 ['OS=="linux"', { 6 ['OS=="linux"', {
14 'variables': { 7 'variables': {
15 'command': [ 8 'command': [
16 '../testing/xvfb.py', 9 '../testing/xvfb.py',
17 '<(PRODUCT_DIR)', 10 '<(PRODUCT_DIR)',
18 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 11 '<(PRODUCT_DIR)/crypto_unittests<(EXECUTABLE_SUFFIX)',
19 '--brave-new-test-launcher', 12 '--brave-new-test-launcher',
20 '--test-launcher-bot-mode', 13 '--test-launcher-bot-mode',
21 '--asan=<(asan)', 14 '--asan=<(asan)',
22 '--lsan=<(lsan)', 15 '--lsan=<(lsan)',
23 '--msan=<(msan)', 16 '--msan=<(msan)',
24 '--tsan=<(tsan)', 17 '--tsan=<(tsan)',
25 ], 18 ],
26 'files': [ 19 'files': [
27 '../testing/xvfb.py', 20 '../testing/xvfb.py',
28 ], 21 ],
29 }, 22 },
30 }], 23 }],
31 ['OS=="linux" and use_ozone==0', { 24 ['OS=="linux" and use_ozone==0', {
32 'variables': { 25 'variables': {
33 'files': [ 26 'files': [
34 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 27 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
35 ], 28 ],
36 }, 29 },
37 }], 30 }],
38 ['OS=="linux" or OS=="mac" or OS=="win"', { 31 ['OS=="linux" or OS=="mac" or OS=="win"', {
39 'variables': { 32 'variables': {
40 'files': [ 33 'files': [
41 '../testing/test_env.py', 34 '../testing/test_env.py',
42 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 35 '<(PRODUCT_DIR)/crypto_unittests<(EXECUTABLE_SUFFIX)',
43 ], 36 ],
44 'read_only': 1, 37 'read_only': 1,
45 }, 38 },
46 }], 39 }],
47 ['OS=="mac" or OS=="win"', { 40 ['OS=="mac" or OS=="win"', {
48 'variables': { 41 'variables': {
49 'command': [ 42 'command': [
50 '../testing/test_env.py', 43 '../testing/test_env.py',
51 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 44 '<(PRODUCT_DIR)/crypto_unittests<(EXECUTABLE_SUFFIX)',
52 '--brave-new-test-launcher', 45 '--brave-new-test-launcher',
53 '--test-launcher-bot-mode', 46 '--test-launcher-bot-mode',
54 '--asan=<(asan)', 47 '--asan=<(asan)',
55 '--lsan=<(lsan)', 48 '--lsan=<(lsan)',
56 '--msan=<(msan)', 49 '--msan=<(msan)',
57 '--tsan=<(tsan)', 50 '--tsan=<(tsan)',
58 ], 51 ],
59 }, 52 },
60 }], 53 }],
61 ['OS=="mac" and asan==1 and fastbuild==0', { 54 ['OS=="mac" and asan==1 and fastbuild==0', {
62 'variables': { 55 'variables': {
63 'files': [ 56 'files': [
64 '<(PRODUCT_DIR)/base_unittests.dSYM/', 57 '<(PRODUCT_DIR)/crypto_unittests.dSYM/',
65 ], 58 ],
66 }, 59 },
67 }], 60 }],
68 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { 61 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
69 'variables': { 62 'variables': {
70 'files': [ 63 'files': [
71 '<(PRODUCT_DIR)/base_unittests.exe.pdb', 64 '<(PRODUCT_DIR)/crypto_unittests.exe.pdb',
72 ], 65 ],
73 }, 66 },
74 }], 67 }],
75 ], 68 ],
76 'includes': [ 69 'includes': [
77 'base.isolate', 70 '../base/base.isolate',
78 ], 71 ],
79 } 72 }
OLDNEW
« no previous file with comments | « crypto/crypto.gyp ('k') | testing/buildbot/chromium.chromiumos.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698