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

Side by Side Diff: net/net.gyp

Issue 1541213002: Adding OCSP Parser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix serial number parsing. Created 4 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'linux_link_kerberos%': 0, 8 'linux_link_kerberos%': 0,
9 # Enables BidirectionalStream; Used in cronet, disabled by default. 9 # Enables BidirectionalStream; Used in cronet, disabled by default.
10 'enable_bidirectional_stream%': 0, 10 'enable_bidirectional_stream%': 0,
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 ], 363 ],
364 [ 'OS == "ios"', { 364 [ 'OS == "ios"', {
365 'actions': [ 365 'actions': [
366 { 366 {
367 'action_name': 'copy_test_data', 367 'action_name': 'copy_test_data',
368 'variables': { 368 'variables': {
369 'test_data_files': [ 369 'test_data_files': [
370 'data/certificate_policies_unittest/', 370 'data/certificate_policies_unittest/',
371 'data/name_constraints_unittest/', 371 'data/name_constraints_unittest/',
372 'data/parse_certificate_unittest/', 372 'data/parse_certificate_unittest/',
373 'data/parse_ocsp_unittest/',
373 'data/ssl/certificates/', 374 'data/ssl/certificates/',
374 'data/test.html', 375 'data/test.html',
375 'data/url_request_unittest/', 376 'data/url_request_unittest/',
376 'data/verify_certificate_chain_unittest/', 377 'data/verify_certificate_chain_unittest/',
377 'data/verify_name_match_unittest/names/', 378 'data/verify_name_match_unittest/names/',
378 ], 379 ],
379 'test_data_prefix': 'net', 380 'test_data_prefix': 'net',
380 }, 381 },
381 'includes': [ '../build/copy_test_data_ios.gypi' ], 382 'includes': [ '../build/copy_test_data_ios.gypi' ],
382 }, 383 },
(...skipping 1317 matching lines...) Expand 10 before | Expand all | Expand 10 after
1700 '../build/isolate.gypi', 1701 '../build/isolate.gypi',
1701 ], 1702 ],
1702 'sources': [ 1703 'sources': [
1703 'net_unittests.isolate', 1704 'net_unittests.isolate',
1704 ], 1705 ],
1705 }, 1706 },
1706 ], 1707 ],
1707 }], 1708 }],
1708 ], 1709 ],
1709 } 1710 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698