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

Side by Side Diff: cc/cc_unittests.isolate

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

Powered by Google App Engine
This is Rietveld 408576698