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

Side by Side Diff: google_apis/google_apis.gyp

Issue 1240333002: Convert google_apis_unittests to run exclusively on Swarming (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: fixed 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
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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 'sources': [ 200 'sources': [
201 'drive/dummy_auth_service.cc', 201 'drive/dummy_auth_service.cc',
202 'drive/dummy_auth_service.h', 202 'drive/dummy_auth_service.h',
203 'drive/test_util.cc', 203 'drive/test_util.cc',
204 'drive/test_util.h', 204 'drive/test_util.h',
205 ], 205 ],
206 }], 206 }],
207 ], 207 ],
208 }, 208 },
209 ], 209 ],
210 'conditions': [
211 ['test_isolation_mode != "noop"', {
212 'targets': [
213 {
214 'target_name': 'google_apis_unittests_run',
215 'type': 'none',
216 'dependencies': [
217 'google_apis_unittests',
218 ],
219 'includes': [
220 '../build/isolate.gypi',
221 ],
222 'sources': [
223 'google_apis_unittests.isolate',
224 ],
225 },
226 ],
227 }],
228 ],
210 } 229 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698