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

Side by Side Diff: net/net.gypi

Issue 1541213002: Adding OCSP Parser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding initial unittest. Created 4 years, 11 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
« net/cert/ocsp_parser.cc ('K') | « net/der/tag.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This file is shared between the regular GYP build, the NaCl GYP build, and 5 # This file is shared between the regular GYP build, the NaCl GYP build, and
6 # the GN build. For GN support, it must have no conditionals or anything like 6 # the GN build. For GN support, it must have no conditionals or anything like
7 # that beyond the simple one-level-deep dictionary of values. 7 # that beyond the simple one-level-deep dictionary of values.
8 { 8 {
9 'variables': { 9 'variables': {
10 # Subset of net source files that are compiled for NaCl (net_nacl target). 10 # Subset of net source files that are compiled for NaCl (net_nacl target).
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 'cert/multi_log_ct_verifier.cc', 585 'cert/multi_log_ct_verifier.cc',
586 'cert/multi_log_ct_verifier.h', 586 'cert/multi_log_ct_verifier.h',
587 'cert/multi_threaded_cert_verifier.cc', 587 'cert/multi_threaded_cert_verifier.cc',
588 'cert/multi_threaded_cert_verifier.h', 588 'cert/multi_threaded_cert_verifier.h',
589 'cert/nss_cert_database.cc', 589 'cert/nss_cert_database.cc',
590 'cert/nss_cert_database.h', 590 'cert/nss_cert_database.h',
591 'cert/nss_cert_database_chromeos.cc', 591 'cert/nss_cert_database_chromeos.cc',
592 'cert/nss_cert_database_chromeos.h', 592 'cert/nss_cert_database_chromeos.h',
593 'cert/nss_profile_filter_chromeos.cc', 593 'cert/nss_profile_filter_chromeos.cc',
594 'cert/nss_profile_filter_chromeos.h', 594 'cert/nss_profile_filter_chromeos.h',
595 'cert/ocsp_parser.h',
596 'cert/ocsp_parser.cc',
595 'cert/scoped_nss_types.h', 597 'cert/scoped_nss_types.h',
596 'cert/sct_status_flags.h', 598 'cert/sct_status_flags.h',
597 'cert/test_root_certs.cc', 599 'cert/test_root_certs.cc',
598 'cert/test_root_certs.h', 600 'cert/test_root_certs.h',
599 'cert/test_root_certs_android.cc', 601 'cert/test_root_certs_android.cc',
600 'cert/test_root_certs_mac.cc', 602 'cert/test_root_certs_mac.cc',
601 'cert/test_root_certs_nss.cc', 603 'cert/test_root_certs_nss.cc',
602 'cert/test_root_certs_openssl.cc', 604 'cert/test_root_certs_openssl.cc',
603 'cert/test_root_certs_win.cc', 605 'cert/test_root_certs_win.cc',
604 'cert/x509_cert_types_mac.cc', 606 'cert/x509_cert_types_mac.cc',
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
1323 'base/url_util_unittest.cc', 1325 'base/url_util_unittest.cc',
1324 'cert/cert_policy_enforcer_unittest.cc', 1326 'cert/cert_policy_enforcer_unittest.cc',
1325 'cert/cert_verify_proc_unittest.cc', 1327 'cert/cert_verify_proc_unittest.cc',
1326 'cert/cert_verify_proc_whitelist_unittest.cc', 1328 'cert/cert_verify_proc_whitelist_unittest.cc',
1327 'cert/crl_set_unittest.cc', 1329 'cert/crl_set_unittest.cc',
1328 'cert/ct_log_response_parser_unittest.cc', 1330 'cert/ct_log_response_parser_unittest.cc',
1329 'cert/ct_log_verifier_unittest.cc', 1331 'cert/ct_log_verifier_unittest.cc',
1330 'cert/ct_objects_extractor_unittest.cc', 1332 'cert/ct_objects_extractor_unittest.cc',
1331 'cert/ct_serialization_unittest.cc', 1333 'cert/ct_serialization_unittest.cc',
1332 'cert/ev_root_ca_metadata_unittest.cc', 1334 'cert/ev_root_ca_metadata_unittest.cc',
1335 'cert/ocsp_parser_unittest.cc',
1333 'cert/internal/certificate_policies_unittest.cc', 1336 'cert/internal/certificate_policies_unittest.cc',
1334 'cert/internal/extended_key_usage_unittest.cc', 1337 'cert/internal/extended_key_usage_unittest.cc',
1335 'cert/internal/name_constraints_unittest.cc', 1338 'cert/internal/name_constraints_unittest.cc',
1336 'cert/internal/parse_certificate_unittest.cc', 1339 'cert/internal/parse_certificate_unittest.cc',
1337 'cert/internal/signature_algorithm_unittest.cc', 1340 'cert/internal/signature_algorithm_unittest.cc',
1338 'cert/internal/test_helpers.cc', 1341 'cert/internal/test_helpers.cc',
1339 'cert/internal/test_helpers.h', 1342 'cert/internal/test_helpers.h',
1340 'cert/internal/verify_name_match_unittest.cc', 1343 'cert/internal/verify_name_match_unittest.cc',
1341 'cert/internal/verify_signed_data_unittest.cc', 1344 'cert/internal/verify_signed_data_unittest.cc',
1342 'cert/jwk_serializer_unittest.cc', 1345 'cert/jwk_serializer_unittest.cc',
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
1928 'docs/bug-triage-labels.md', 1931 'docs/bug-triage-labels.md',
1929 'docs/bug-triage-suggested-workflow.md', 1932 'docs/bug-triage-suggested-workflow.md',
1930 'docs/code-patterns.md', 1933 'docs/code-patterns.md',
1931 'docs/crash-course-in-net-internals.md', 1934 'docs/crash-course-in-net-internals.md',
1932 'docs/life-of-a-url-request.md', 1935 'docs/life-of-a-url-request.md',
1933 'sdch/README.md', 1936 'sdch/README.md',
1934 ], 1937 ],
1935 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs', 1938 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs',
1936 } 1939 }
1937 } 1940 }
OLDNEW
« net/cert/ocsp_parser.cc ('K') | « net/der/tag.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698