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

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, 9 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 | « media/cast/cast_testing.gypi ('k') | testing/buildbot/chromium.linux.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) 2014 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" or OS=="mac" or OS=="win"', {
7 'variables': {
8 'files': [
9 '../../testing/test_env.py',
10 '<(PRODUCT_DIR)/app_list_unittests<(EXECUTABLE_SUFFIX)',
11 '<(PRODUCT_DIR)/ui_test.pak',
12 ],
13 },
14 }],
15 ['OS=="linux"', { 6 ['OS=="linux"', {
16 'variables': { 7 'variables': {
17 'command': [ 8 'command': [
18 '../../testing/xvfb.py', 9 '../../testing/xvfb.py',
19 '<(PRODUCT_DIR)', 10 '<(PRODUCT_DIR)',
20 '<(PRODUCT_DIR)/app_list_unittests<(EXECUTABLE_SUFFIX)', 11 '<(PRODUCT_DIR)/cast_unittests<(EXECUTABLE_SUFFIX)',
21 '--brave-new-test-launcher', 12 '--brave-new-test-launcher',
22 '--test-launcher-bot-mode', 13 '--test-launcher-bot-mode',
23 '--asan=<(asan)', 14 '--asan=<(asan)',
24 '--lsan=<(lsan)', 15 '--lsan=<(lsan)',
25 '--msan=<(msan)', 16 '--msan=<(msan)',
26 '--tsan=<(tsan)', 17 '--tsan=<(tsan)',
27 ], 18 ],
28 'files': [ 19 'files': [
29 '../../testing/xvfb.py', 20 '../../testing/xvfb.py',
30 '<(PRODUCT_DIR)/libosmesa.so', 21 '<(PRODUCT_DIR)/libffmpegsumo.so',
31 ], 22 ],
32 }, 23 },
33 }], 24 }],
34 ['OS=="linux" and use_ozone==0', { 25 ['OS=="linux" and use_ozone==0', {
35 'variables': { 26 'variables': {
36 'files': [ 27 'files': [
37 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 28 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
38 ], 29 ],
39 }, 30 },
40 }], 31 }],
32 ['OS=="linux" or OS=="mac" or OS=="win"', {
33 'variables': {
34 'files': [
35 '../../testing/test_env.py',
36 '<(PRODUCT_DIR)/cast_unittests<(EXECUTABLE_SUFFIX)',
37 ],
38 'read_only': 1,
M-A Ruel 2015/02/26 01:07:02 read_only:1 is now the default so it's not needed
scottmg 2015/02/26 01:09:27 Done.
39 },
40 }],
41 ['OS=="mac"', { 41 ['OS=="mac"', {
42 'variables': { 42 'variables': {
43 'files': [ 43 'files': [
44 '<(PRODUCT_DIR)/osmesa.so', 44 '<(PRODUCT_DIR)/ffmpegsumo.so',
45 ],
46 },
47 }],
48 ['OS=="win"', {
49 'variables': {
50 'files': [
51 '<(PRODUCT_DIR)/osmesa.dll',
52 ], 45 ],
53 }, 46 },
54 }], 47 }],
55 ['OS=="mac" or OS=="win"', { 48 ['OS=="mac" or OS=="win"', {
56 'variables': { 49 'variables': {
57 'command': [ 50 'command': [
58 '../../testing/test_env.py', 51 '../../testing/test_env.py',
59 '<(PRODUCT_DIR)/app_list_unittests<(EXECUTABLE_SUFFIX)', 52 '<(PRODUCT_DIR)/cast_unittests<(EXECUTABLE_SUFFIX)',
60 '--brave-new-test-launcher', 53 '--brave-new-test-launcher',
61 '--test-launcher-bot-mode', 54 '--test-launcher-bot-mode',
62 '--asan=<(asan)', 55 '--asan=<(asan)',
63 '--lsan=<(lsan)', 56 '--lsan=<(lsan)',
64 '--msan=<(msan)', 57 '--msan=<(msan)',
65 '--tsan=<(tsan)', 58 '--tsan=<(tsan)',
66 ], 59 ],
67 }, 60 },
68 }], 61 }],
69 ['OS=="mac" and asan==1 and fastbuild==0', { 62 ['OS=="mac" and asan==1 and fastbuild==0', {
70 'variables': { 63 'variables': {
71 'files': [ 64 'files': [
72 '<(PRODUCT_DIR)/app_list_unittests.dSYM/', 65 '<(PRODUCT_DIR)/cast_unittests.dSYM/',
73 '<(PRODUCT_DIR)/osmesa.so.dSYM/', 66 ],
67 },
68 }],
69 ['OS=="win"', {
70 'variables': {
71 'files': [
72 '<(PRODUCT_DIR)/ffmpegsumo.dll',
73 ],
74 },
75 }],
76 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
77 'variables': {
78 'files': [
79 '<(PRODUCT_DIR)/cast_unittests.exe.pdb',
74 ], 80 ],
75 }, 81 },
76 }], 82 }],
77 ], 83 ],
78 'includes': [ 84 'includes': [
79 '../../base/base.isolate', 85 '../../base/base.isolate',
80 ], 86 ],
81 } 87 }
OLDNEW
« no previous file with comments | « media/cast/cast_testing.gypi ('k') | testing/buildbot/chromium.linux.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698