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

Side by Side Diff: Source/platform/blink_platform_tests.gyp

Issue 1316763004: Add isolate/swarming support for some Blink test targets. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | Annotate | Revision Log
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 '<(DEPTH)/base/base.gyp:base_java', 180 '<(DEPTH)/base/base.gyp:base_java',
181 '<(DEPTH)/net/net.gyp:net_java', 181 '<(DEPTH)/net/net.gyp:net_java',
182 'blink_platform_unittests', 182 'blink_platform_unittests',
183 ], 183 ],
184 'variables': { 184 'variables': {
185 'test_suite_name': 'blink_platform_unittests', 185 'test_suite_name': 'blink_platform_unittests',
186 }, 186 },
187 'includes': [ '../../../../build/apk_test.gypi' ], 187 'includes': [ '../../../../build/apk_test.gypi' ],
188 }], 188 }],
189 }], 189 }],
190 ['test_isolation_mode != "noop"', {
191 'targets': [
192 {
193 'target_name': 'blink_heap_unittests_run',
194 'type': 'none',
195 'dependencies': [
196 'blink_heap_unittests',
197 ],
198 'includes': [
199 '../../../../build/isolate.gypi',
200 ],
201 'sources': [
202 'blink_heap_unittests.isolate',
203 ],
204 },
205 {
206 'target_name': 'blink_platform_unittests_run',
207 'type': 'none',
208 'dependencies': [
209 'blink_platform_unittests',
210 ],
211 'includes': [
212 '../../../../build/isolate.gypi',
213 ],
214 'sources': [
215 'blink_platform_unittests.isolate',
216 ],
217 }
218 ],
219 }],
190 ], 220 ],
191 } 221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698