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

Side by Side Diff: sandbox/mac/sandbox_mac.gypi

Issue 1218203002: Convert sandbox_mac_unittests to run exclusively on Swarming (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 | « build/gn_migration.gypi ('k') | sandbox/sandbox_mac_unittests.isolate » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'sandbox', 8 'target_name': 'sandbox',
9 'type': '<(component)', 9 'type': '<(component)',
10 'sources': [ 10 'sources': [
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 '..', 104 '..',
105 ], 105 ],
106 'link_settings': { 106 'link_settings': {
107 'libraries': [ 107 'libraries': [
108 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 108 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
109 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 109 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
110 ], 110 ],
111 }, 111 },
112 }, 112 },
113 ], 113 ],
114 'conditions': [
115 ['test_isolation_mode != "noop"', {
116 'targets': [
117 {
118 'target_name': 'sandbox_mac_unittests_run',
119 'type': 'none',
120 'dependencies': [
121 'sandbox_mac_unittests',
122 ],
123 'includes': [ '../../build/isolate.gypi' ],
124 'sources': [ '../sandbox_mac_unittests.isolate' ],
125 },
126 ],
127 }],
128 ],
114 } 129 }
OLDNEW
« no previous file with comments | « build/gn_migration.gypi ('k') | sandbox/sandbox_mac_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698