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

Side by Side Diff: media/cast/cast_unittests.isolate

Issue 958733002: isolate cast_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
OLDNEW
1 # Copyright 2015 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=="linux"', { 6 ['OS=="linux"', {
7 'variables': { 7 'variables': {
8 'command': [ 8 'command': [
9 '../testing/xvfb.py', 9 '../../testing/xvfb.py',
10 '<(PRODUCT_DIR)', 10 '<(PRODUCT_DIR)',
11 '<(PRODUCT_DIR)/crypto_unittests<(EXECUTABLE_SUFFIX)', 11 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
M-A Ruel 2015/02/25 22:44:25 copy pasted
scottmg 2015/02/25 22:48:51 Done.
12 '--brave-new-test-launcher', 12 '--brave-new-test-launcher',
13 '--test-launcher-bot-mode', 13 '--test-launcher-bot-mode',
14 '--asan=<(asan)', 14 '--asan=<(asan)',
15 '--lsan=<(lsan)', 15 '--lsan=<(lsan)',
16 '--msan=<(msan)', 16 '--msan=<(msan)',
17 '--tsan=<(tsan)', 17 '--tsan=<(tsan)',
18 ], 18 ],
19 'files': [ 19 'files': [
20 '../testing/xvfb.py', 20 '../../testing/xvfb.py',
21 ], 21 ],
22 }, 22 },
23 }], 23 }],
24 ['OS=="linux" and use_ozone==0', { 24 ['OS=="linux" and use_ozone==0', {
25 'variables': { 25 'variables': {
26 'files': [ 26 'files': [
27 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 27 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
28 ], 28 ],
29 }, 29 },
30 }], 30 }],
31 ['OS=="linux" or OS=="mac" or OS=="win"', { 31 ['OS=="linux" or OS=="mac" or OS=="win"', {
32 'variables': { 32 'variables': {
33 'files': [ 33 'files': [
34 '../testing/test_env.py', 34 '../../testing/test_env.py',
35 '<(PRODUCT_DIR)/crypto_unittests<(EXECUTABLE_SUFFIX)', 35 '<(PRODUCT_DIR)/cast_unittests<(EXECUTABLE_SUFFIX)',
36 ], 36 ],
37 'read_only': 1, 37 'read_only': 1,
38 }, 38 },
39 }], 39 }],
40 ['OS=="mac" or OS=="win"', { 40 ['OS=="mac" or OS=="win"', {
41 'variables': { 41 'variables': {
42 'command': [ 42 'command': [
43 '../testing/test_env.py', 43 '../../testing/test_env.py',
44 '<(PRODUCT_DIR)/crypto_unittests<(EXECUTABLE_SUFFIX)', 44 '<(PRODUCT_DIR)/cast_unittests<(EXECUTABLE_SUFFIX)',
45 '--brave-new-test-launcher', 45 '--brave-new-test-launcher',
46 '--test-launcher-bot-mode', 46 '--test-launcher-bot-mode',
47 '--asan=<(asan)', 47 '--asan=<(asan)',
48 '--lsan=<(lsan)', 48 '--lsan=<(lsan)',
49 '--msan=<(msan)', 49 '--msan=<(msan)',
50 '--tsan=<(tsan)', 50 '--tsan=<(tsan)',
51 ], 51 ],
52 }, 52 },
53 }], 53 }],
54 ['OS=="mac" and asan==1 and fastbuild==0', { 54 ['OS=="mac" and asan==1 and fastbuild==0', {
55 'variables': { 55 'variables': {
56 'files': [ 56 'files': [
57 '<(PRODUCT_DIR)/crypto_unittests.dSYM/', 57 '<(PRODUCT_DIR)/cast_unittests.dSYM/',
58 ], 58 ],
59 }, 59 },
60 }], 60 }],
61 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { 61 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
62 'variables': { 62 'variables': {
63 'files': [ 63 'files': [
64 '<(PRODUCT_DIR)/crypto_unittests.exe.pdb', 64 '<(PRODUCT_DIR)/cast_unittests.exe.pdb',
65 ], 65 ],
66 }, 66 },
67 }], 67 }],
68 ], 68 ],
69 'includes': [ 69 'includes': [
70 '../base/base.isolate', 70 '../../base/base.isolate',
71 ], 71 ],
72 } 72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698