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

Side by Side Diff: extensions/extensions_browsertests.isolate

Issue 869783004: Isolate extensions_browsertests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add wow_helper for Vista x64 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
« no previous file with comments | « no previous file | extensions/extensions_tests.gyp » ('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) 2012 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=="android" or 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 '../net/data/',
10 '../net/tools/testserver/',
11 '../testing/test_env.py',
12 '../third_party/pyftpdlib/',
13 '../third_party/pywebsocket/',
14 '../third_party/tlslite/',
15 '<(PRODUCT_DIR)/extensions_browsertests<(EXECUTABLE_SUFFIX)',
16 '<(PRODUCT_DIR)/extensions_shell_and_test.pak',
9 'test/data/', 17 'test/data/',
10 ], 18 ],
11 }, 19 },
12 }], 20 }],
13 ['OS=="linux"', { 21 ['OS=="linux"', {
14 'variables': { 22 'variables': {
15 'command': [ 23 'command': [
16 '../testing/xvfb.py', 24 '../testing/xvfb.py',
17 '<(PRODUCT_DIR)', 25 '<(PRODUCT_DIR)',
18 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 26 '<(PRODUCT_DIR)/extensions_browsertests<(EXECUTABLE_SUFFIX)',
19 '--brave-new-test-launcher', 27 '--brave-new-test-launcher',
20 '--test-launcher-bot-mode', 28 '--test-launcher-bot-mode',
21 '--asan=<(asan)', 29 '--asan=<(asan)',
22 '--lsan=<(lsan)', 30 '--lsan=<(lsan)',
23 ], 31 ],
24 'files': [ 32 'files': [
25 '../testing/xvfb.py', 33 '../testing/xvfb.py',
34 '<(PRODUCT_DIR)/libosmesa.so',
26 ], 35 ],
27 }, 36 },
28 }], 37 }],
29 ['OS=="linux" and use_ozone==0', { 38 ['OS=="linux" and use_ozone==0', {
30 'variables': { 39 'variables': {
31 'files': [ 40 'files': [
32 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 41 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
33 ], 42 ],
34 }, 43 },
35 }], 44 }],
36 ['OS=="linux" or OS=="mac" or OS=="win"', {
37 'variables': {
38 'files': [
39 '../testing/test_env.py',
40 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
41 ],
42 'read_only': 1,
43 },
44 }],
45 ['OS=="mac" or OS=="win"', { 45 ['OS=="mac" or OS=="win"', {
46 'variables': { 46 'variables': {
47 'command': [ 47 'command': [
48 '../testing/test_env.py', 48 '../testing/test_env.py',
49 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 49 '<(PRODUCT_DIR)/extensions_browsertests<(EXECUTABLE_SUFFIX)',
50 '--brave-new-test-launcher', 50 '--brave-new-test-launcher',
51 '--test-launcher-bot-mode', 51 '--test-launcher-bot-mode',
52 '--asan=<(asan)', 52 '--asan=<(asan)',
53 '--lsan=<(lsan)', 53 '--lsan=<(lsan)',
54 ], 54 ],
55 }, 55 },
56 }], 56 }],
57 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { 57 ['OS=="win" and target_arch=="ia32"', {
58 'variables': { 58 'variables': {
59 'files': [ 59 'files': [
60 '<(PRODUCT_DIR)/base_unittests.exe.pdb', 60 '<(PRODUCT_DIR)/wow_helper.exe',
61 ], 61 ],
62 }, 62 },
63 }], 63 }],
64 ], 64 ],
65 'includes': [ 65 'includes': [
66 'base.isolate', 66 '../base/base.isolate',
67 '../gin/v8.isolate',
67 ], 68 ],
68 } 69 }
OLDNEW
« no previous file with comments | « no previous file | extensions/extensions_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698