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

Side by Side Diff: net/net.gyp

Issue 4184004: Add support for certificate name checking (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wtc & rsleevi comments Created 10 years, 1 month 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 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 849 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 'base/ssl_config_service_unittest.cc', 860 'base/ssl_config_service_unittest.cc',
861 'base/ssl_config_service_win_unittest.cc', 861 'base/ssl_config_service_win_unittest.cc',
862 'base/ssl_false_start_blacklist_unittest.cc', 862 'base/ssl_false_start_blacklist_unittest.cc',
863 'base/static_cookie_policy_unittest.cc', 863 'base/static_cookie_policy_unittest.cc',
864 'base/transport_security_state_unittest.cc', 864 'base/transport_security_state_unittest.cc',
865 'base/test_certificate_data.h', 865 'base/test_certificate_data.h',
866 'base/test_completion_callback_unittest.cc', 866 'base/test_completion_callback_unittest.cc',
867 'base/upload_data_stream_unittest.cc', 867 'base/upload_data_stream_unittest.cc',
868 'base/x509_certificate_unittest.cc', 868 'base/x509_certificate_unittest.cc',
869 'base/x509_cert_types_unittest.cc', 869 'base/x509_cert_types_unittest.cc',
870 'base/x509_openssl_util_unittest.cc',
870 'disk_cache/addr_unittest.cc', 871 'disk_cache/addr_unittest.cc',
871 'disk_cache/backend_unittest.cc', 872 'disk_cache/backend_unittest.cc',
872 'disk_cache/bitmap_unittest.cc', 873 'disk_cache/bitmap_unittest.cc',
873 'disk_cache/block_files_unittest.cc', 874 'disk_cache/block_files_unittest.cc',
874 'disk_cache/cache_util_unittest.cc', 875 'disk_cache/cache_util_unittest.cc',
875 'disk_cache/disk_cache_test_base.cc', 876 'disk_cache/disk_cache_test_base.cc',
876 'disk_cache/disk_cache_test_base.h', 877 'disk_cache/disk_cache_test_base.h',
877 'disk_cache/entry_unittest.cc', 878 'disk_cache/entry_unittest.cc',
878 'disk_cache/mapped_file_unittest.cc', 879 'disk_cache/mapped_file_unittest.cc',
879 'disk_cache/storage_block_unittest.cc', 880 'disk_cache/storage_block_unittest.cc',
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 }], 1008 }],
1008 [ 'use_openssl==1', { 1009 [ 'use_openssl==1', {
1009 # When building for OpenSSL, we need to exclude NSS specific tests. 1010 # When building for OpenSSL, we need to exclude NSS specific tests.
1010 # TODO(bulach): Add equivalent tests when the underlying 1011 # TODO(bulach): Add equivalent tests when the underlying
1011 # functionality is ported to OpenSSL. 1012 # functionality is ported to OpenSSL.
1012 'sources!': [ 1013 'sources!': [
1013 'base/cert_database_nss_unittest.cc', 1014 'base/cert_database_nss_unittest.cc',
1014 'base/dnssec_unittest.cc', 1015 'base/dnssec_unittest.cc',
1015 ], 1016 ],
1016 }, 1017 },
1018 { # else, remove openssl specific tests
1019 'sources!': [
1020 'base/x509_openssl_util_unittest.cc',
1021 ],
1022 }
1017 ], 1023 ],
1018 [ 'OS == "win"', { 1024 [ 'OS == "win"', {
1019 'sources!': [ 1025 'sources!': [
1020 'http/http_auth_gssapi_posix_unittest.cc', 1026 'http/http_auth_gssapi_posix_unittest.cc',
1021 ], 1027 ],
1022 # This is needed to trigger the dll copy step on windows. 1028 # This is needed to trigger the dll copy step on windows.
1023 # TODO(mark): Specifying this here shouldn't be necessary. 1029 # TODO(mark): Specifying this here shouldn't be necessary.
1024 'dependencies': [ 1030 'dependencies': [
1025 '../third_party/icu/icu.gyp:icudata', 1031 '../third_party/icu/icu.gyp:icudata',
1026 ], 1032 ],
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 ], 1448 ],
1443 }], 1449 }],
1444 ], 1450 ],
1445 } 1451 }
1446 1452
1447 # Local Variables: 1453 # Local Variables:
1448 # tab-width:2 1454 # tab-width:2
1449 # indent-tabs-mode:nil 1455 # indent-tabs-mode:nil
1450 # End: 1456 # End:
1451 # vim: set expandtab tabstop=2 shiftwidth=2: 1457 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« net/base/x509_openssl_util.cc ('K') | « net/base/x509_openssl_util_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698