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

Side by Side Diff: crypto/crypto.gyp

Issue 875353004: Isolate crypto_unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « no previous file | crypto/crypto_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 (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, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'crypto.gypi', 10 'crypto.gypi',
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 ], 290 ],
291 } 291 }
292 ]}, { # use_nss==0 292 ]}, { # use_nss==0
293 'targets': [ 293 'targets': [
294 { 294 {
295 'target_name': 'crypto_test_support', 295 'target_name': 'crypto_test_support',
296 'type': 'none', 296 'type': 'none',
297 'sources': [], 297 'sources': [],
298 } 298 }
299 ]}], 299 ]}],
300 ['test_isolation_mode != "noop"', {
301 'targets': [
302 {
303 'target_name': 'crypto_unittests_run',
304 'type': 'none',
305 'dependencies': [
306 'crypto_unittests',
307 ],
308 'includes': [
309 '../build/isolate.gypi',
310 ],
311 'sources': [
312 'crypto_unittests.isolate',
313 ],
314 },
315 ],
316 }],
300 ], 317 ],
301 } 318 }
OLDNEW
« no previous file with comments | « no previous file | crypto/crypto_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698