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

Side by Side Diff: extensions/extensions_unittests.isolate

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

Powered by Google App Engine
This is Rietveld 408576698