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

Side by Side Diff: net/net.gyp

Issue 1810153002: Adding iOS OpenSSL Implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplifying logic for first iteration. Created 4 years, 9 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 'conditions': [ 9 'conditions': [
10 ['chromeos==1 or embedded==1 or OS=="ios"', { 10 ['chromeos==1 or embedded==1 or OS=="ios"', {
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 'http/http_auth_handler_negotiate_unittest.cc', 226 'http/http_auth_handler_negotiate_unittest.cc',
227 ], 227 ],
228 }], 228 }],
229 [ 'use_nss_verifier == 0', { 229 [ 'use_nss_verifier == 0', {
230 # Only include this test when using NSS for cert verification. 230 # Only include this test when using NSS for cert verification.
231 'sources!': [ 231 'sources!': [
232 'cert_net/nss_ocsp_unittest.cc', 232 'cert_net/nss_ocsp_unittest.cc',
233 ], 233 ],
234 }], 234 }],
235 [ 'use_nss_verifier == 0 and OS == "ios"', { 235 [ 'use_nss_verifier == 0 and OS == "ios"', {
236 'sources': [
237 'cert/test_root_certs_mac.cc',
238 ],
236 # Only include these files on iOS when using NSS for cert 239 # Only include these files on iOS when using NSS for cert
237 # verification. 240 # verification.
238 'sources!': [ 241 'sources!': [
239 'cert/x509_util_ios.cc', 242 'cert/x509_util_ios.cc',
240 'cert/x509_util_ios.h', 243 'cert/x509_util_ios.h',
241 ], 244 ],
242 }], 245 }],
246 [ 'use_nss_verifier == 1 and OS == "ios"', {
247 'sources!': [
248 'cert/cert_verify_proc_openssl_ios.cc',
249 'cert/cert_verify_proc_openssl_ios.h',
250 'cert/x509_certificate_openssl_ios.cc',
251 ],
252 }],
243 [ 'use_openssl==1', { 253 [ 'use_openssl==1', {
244 'sources!': [ 254 'sources!': [
245 'quic/test_tools/crypto_test_utils_nss.cc', 255 'quic/test_tools/crypto_test_utils_nss.cc',
246 ], 256 ],
247 }, { # else !use_openssl: remove the unneeded files and pull in NSS. 257 }, { # else !use_openssl: remove the unneeded files and pull in NSS.
248 'sources!': [ 258 'sources!': [
249 'quic/test_tools/crypto_test_utils_openssl.cc', 259 'quic/test_tools/crypto_test_utils_openssl.cc',
250 'ssl/ssl_client_session_cache_openssl_unittest.cc', 260 'ssl/ssl_client_session_cache_openssl_unittest.cc',
251 ], 261 ],
252 }, 262 },
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 'test_data_files': [ 367 'test_data_files': [
358 'data/certificate_policies_unittest/', 368 'data/certificate_policies_unittest/',
359 'data/name_constraints_unittest/', 369 'data/name_constraints_unittest/',
360 'data/parse_certificate_unittest/', 370 'data/parse_certificate_unittest/',
361 'data/ssl/certificates/', 371 'data/ssl/certificates/',
362 'data/test.html', 372 'data/test.html',
363 'data/url_request_unittest/', 373 'data/url_request_unittest/',
364 'data/verify_certificate_chain_unittest/', 374 'data/verify_certificate_chain_unittest/',
365 'data/verify_name_match_unittest/names/', 375 'data/verify_name_match_unittest/names/',
366 'data/verify_signed_data_unittest/', 376 'data/verify_signed_data_unittest/',
377 'third_party/nist-pkits/',
367 ], 378 ],
368 'test_data_prefix': 'net', 379 'test_data_prefix': 'net',
369 }, 380 },
370 'includes': [ '../build/copy_test_data_ios.gypi' ], 381 'includes': [ '../build/copy_test_data_ios.gypi' ],
371 }, 382 },
372 ], 383 ],
373 'sources!': [ 384 'sources!': [
374 # TODO(droger): The following tests are disabled because the 385 # TODO(droger): The following tests are disabled because the
375 # implementation is missing or incomplete. 386 # implementation is missing or incomplete.
376 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS. 387 # KeygenHandler::GenKeyAndSignChallenge() is not ported to iOS.
(...skipping 1326 matching lines...) Expand 10 before | Expand all | Expand 10 after
1703 '../build/isolate.gypi', 1714 '../build/isolate.gypi',
1704 ], 1715 ],
1705 'sources': [ 1716 'sources': [
1706 'net_unittests.isolate', 1717 'net_unittests.isolate',
1707 ], 1718 ],
1708 }, 1719 },
1709 ], 1720 ],
1710 }], 1721 }],
1711 ], 1722 ],
1712 } 1723 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698