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

Side by Side Diff: skia/skia_tests.gyp

Issue 1212893004: Write skia_unittests.isolate and enable swarming for skia_unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert chromium.fyi.json per maruel@ 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 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 'dependencies': [ 53 'dependencies': [
54 'skia_unittests', 54 'skia_unittests',
55 ], 55 ],
56 'variables': { 56 'variables': {
57 'test_suite_name': 'skia_unittests', 57 'test_suite_name': 'skia_unittests',
58 }, 58 },
59 'includes': [ '../build/apk_test.gypi' ], 59 'includes': [ '../build/apk_test.gypi' ],
60 }, 60 },
61 ], 61 ],
62 }], 62 }],
63 ['test_isolation_mode != "noop"', {
64 'targets': [
65 {
66 'target_name': 'skia_unittests_run',
67 'type': 'none',
68 'dependencies': [
69 'skia_unittests',
70 ],
71 'includes': [
72 '../build/isolate.gypi',
73 ],
74 'sources': [
75 'skia_unittests.isolate',
76 ],
77 },
78 ],
79 }],
63 ], 80 ],
64 } 81 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698