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

Side by Side Diff: tools/gn/gn.gyp

Issue 1214533005: Convert gn_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
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'chromium_code': 1, 3 'chromium_code': 1,
4 }, 4 },
5 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'gn_lib', 7 'target_name': 'gn_lib',
8 'type': 'static_library', 8 'type': 'static_library',
9 'dependencies': [ 9 'dependencies': [
10 '../../base/base.gyp:base', 10 '../../base/base.gyp:base',
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 'target_name': 'generate_test_gn_data', 266 'target_name': 'generate_test_gn_data',
267 'type': 'executable', 267 'type': 'executable',
268 'sources': [ 268 'sources': [
269 'generate_test_gn_data.cc', 269 'generate_test_gn_data.cc',
270 ], 270 ],
271 'dependencies': [ 271 'dependencies': [
272 '../../base/base.gyp:base', 272 '../../base/base.gyp:base',
273 ], 273 ],
274 } 274 }
275 ], 275 ],
276 'conditions': [
277 ['test_isolation_mode != "noop"', {
278 'targets': [
279 {
280 'target_name': 'gn_unittests_run',
281 'type': 'none',
282 'dependencies': [
283 'gn_unittests',
284 ],
285 'includes': [ '../../build/isolate.gypi' ],
286 'sources': [ 'gn_unittests.isolate' ],
287 },
288 ],
289 }],
290 ],
276 } 291 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698