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

Side by Side Diff: gpu/gpu_unittests.isolate

Issue 988693005: Chromium roll (https://codereview.chromium.org/976353002) (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: fixed bad android build patch 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
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" or OS=="mac" or OS=="win"', { 6 ['OS=="linux" or OS=="mac" or OS=="win"', {
7 'variables': { 7 'variables': {
8 'files': [ 8 'files': [
9 '../testing/test_env.py', 9 '../testing/test_env.py',
10 '<(PRODUCT_DIR)/gpu_unittests<(EXECUTABLE_SUFFIX)', 10 '<(PRODUCT_DIR)/gpu_unittests<(EXECUTABLE_SUFFIX)',
11 ], 11 ],
12 }, 12 },
13 }], 13 }],
14 ['OS=="linux"', { 14 ['OS=="linux"', {
15 'variables': { 15 'variables': {
16 'command': [ 16 'command': [
17 '../testing/xvfb.py', 17 '../testing/xvfb.py',
18 '<(PRODUCT_DIR)', 18 '<(PRODUCT_DIR)',
19 '<(PRODUCT_DIR)/gpu_unittests', 19 '<(PRODUCT_DIR)/gpu_unittests',
20 '--brave-new-test-launcher', 20 '--brave-new-test-launcher',
21 '--test-launcher-bot-mode', 21 '--test-launcher-bot-mode',
22 '--asan=<(asan)', 22 '--asan=<(asan)',
23 '--lsan=<(lsan)',
24 '--msan=<(msan)', 23 '--msan=<(msan)',
25 '--tsan=<(tsan)', 24 '--tsan=<(tsan)',
26 ], 25 ],
27 'files': [ 26 'files': [
28 '../testing/xvfb.py', 27 '../testing/xvfb.py',
29 '<(PRODUCT_DIR)/xdisplaycheck', 28 '<(PRODUCT_DIR)/xdisplaycheck',
30 ], 29 ],
31 }, 30 },
32 }], 31 }],
33 ['OS=="mac"', { 32 ['OS=="mac"', {
34 'variables': { 33 'variables': {
35 'command': [ 34 'command': [
36 '../testing/test_env.py', 35 '../testing/test_env.py',
37 '<(PRODUCT_DIR)/gpu_unittests', 36 '<(PRODUCT_DIR)/gpu_unittests',
38 '--brave-new-test-launcher', 37 '--brave-new-test-launcher',
39 '--test-launcher-bot-mode', 38 '--test-launcher-bot-mode',
40 '--asan=<(asan)', 39 '--asan=<(asan)',
41 '--lsan=<(lsan)',
42 '--msan=<(msan)', 40 '--msan=<(msan)',
43 '--tsan=<(tsan)', 41 '--tsan=<(tsan)',
44 ], 42 ],
45 }, 43 },
46 }], 44 }],
47 ['OS=="win"', { 45 ['OS=="win"', {
48 'variables': { 46 'variables': {
49 'command': [ 47 'command': [
50 '../testing/test_env.py', 48 '../testing/test_env.py',
51 '<(PRODUCT_DIR)/gpu_unittests.exe', 49 '<(PRODUCT_DIR)/gpu_unittests.exe',
52 '--brave-new-test-launcher', 50 '--brave-new-test-launcher',
53 '--test-launcher-bot-mode', 51 '--test-launcher-bot-mode',
54 '--asan=<(asan)', 52 '--asan=<(asan)',
55 '--lsan=<(lsan)',
56 '--msan=<(msan)', 53 '--msan=<(msan)',
57 '--tsan=<(tsan)', 54 '--tsan=<(tsan)',
58 ], 55 ],
59 }, 56 },
60 }], 57 }],
61 ['OS=="mac" and asan==1 and fastbuild==0', { 58 ['OS=="mac" and asan==1 and fastbuild==0', {
62 'variables': { 59 'variables': {
63 'files': [ 60 'files': [
64 '<(PRODUCT_DIR)/gpu_unittests.dSYM/', 61 '<(PRODUCT_DIR)/gpu_unittests.dSYM/',
65 ], 62 ],
66 }, 63 },
67 }], 64 }],
68 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { 65 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
69 'variables': { 66 'variables': {
70 'files': [ 67 'files': [
71 '<(PRODUCT_DIR)/gpu_unittests.exe.pdb', 68 '<(PRODUCT_DIR)/gpu_unittests.exe.pdb',
72 ], 69 ],
73 }, 70 },
74 }], 71 }],
75 ], 72 ],
76 'includes': [ 73 'includes': [
77 '../base/base.isolate', 74 '../base/base.isolate',
78 ], 75 ],
79 } 76 }
OLDNEW
« no previous file with comments | « gpu/command_buffer/tests/gl_gpu_memory_buffer_unittest.cc ('k') | gpu/perftests/run_all_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698