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

Side by Side Diff: base/base_unittests.isolate

Issue 1064793002: Fix OutOfMemoryDeathTest.ViaSharedLibraries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed CL to avoid target enumeration on unsupported OS Created 5 years, 8 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 | « base/base.gyp ('k') | base/process/memory_unittest.cc » ('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 (c) 2012 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 ['use_x11==0', { 6 ['use_x11==0', {
7 'variables': { 7 'variables': {
8 'command': [ 8 'command': [
9 '../testing/test_env.py', 9 '../testing/test_env.py',
10 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 10 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 }], 43 }],
44 ['OS=="linux" or OS=="mac" or OS=="win"', { 44 ['OS=="linux" or OS=="mac" or OS=="win"', {
45 'variables': { 45 'variables': {
46 'files': [ 46 'files': [
47 '../testing/test_env.py', 47 '../testing/test_env.py',
48 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', 48 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)',
49 ], 49 ],
50 'read_only': 1, 50 'read_only': 1,
51 }, 51 },
52 }], 52 }],
53 ['OS=="linux"', {
54 'variables': {
55 'files': [
56 '<(PRODUCT_DIR)/lib/libmalloc_wrapper.so',
57 ],
58 },
59 }],
53 ['OS=="mac" and asan==1 and fastbuild==0', { 60 ['OS=="mac" and asan==1 and fastbuild==0', {
54 'variables': { 61 'variables': {
55 'files': [ 62 'files': [
56 '<(PRODUCT_DIR)/base_unittests.dSYM/', 63 '<(PRODUCT_DIR)/base_unittests.dSYM/',
57 ], 64 ],
58 }, 65 },
59 }], 66 }],
60 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { 67 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
61 'variables': { 68 'variables': {
62 'files': [ 69 'files': [
63 '<(PRODUCT_DIR)/base_unittests.exe.pdb', 70 '<(PRODUCT_DIR)/base_unittests.exe.pdb',
64 ], 71 ],
65 }, 72 },
66 }], 73 }],
67 ], 74 ],
68 'includes': [ 75 'includes': [
69 'base.isolate', 76 'base.isolate',
70 ], 77 ],
71 } 78 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/process/memory_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698