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

Side by Side Diff: net/net.gypi

Issue 462543002: Certificate Transparency: Code for unpacking EV cert hashes whitelist (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
wtc 2014/09/02 23:03:02 IMPORTANT: you also need to add the new files to n
Eran Messeri 2014/09/03 09:38:51 Not sure where to - net/BUILD.gn does not seem to
wtc 2014/09/03 14:29:47 Since your try build on the linux_chromium_gn_rel
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).
11 # These files must not depend on files listed in sources list in the net 11 # These files must not depend on files listed in sources list in the net
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 'cert/cert_verify_proc_mac.cc', 294 'cert/cert_verify_proc_mac.cc',
295 'cert/cert_verify_proc_mac.h', 295 'cert/cert_verify_proc_mac.h',
296 'cert/cert_verify_proc_nss.cc', 296 'cert/cert_verify_proc_nss.cc',
297 'cert/cert_verify_proc_nss.h', 297 'cert/cert_verify_proc_nss.h',
298 'cert/cert_verify_proc_openssl.cc', 298 'cert/cert_verify_proc_openssl.cc',
299 'cert/cert_verify_proc_openssl.h', 299 'cert/cert_verify_proc_openssl.h',
300 'cert/cert_verify_proc_win.cc', 300 'cert/cert_verify_proc_win.cc',
301 'cert/cert_verify_proc_win.h', 301 'cert/cert_verify_proc_win.h',
302 'cert/crl_set_storage.cc', 302 'cert/crl_set_storage.cc',
303 'cert/crl_set_storage.h', 303 'cert/crl_set_storage.h',
304 'cert/ct_ev_whitelist.cc',
305 'cert/ct_ev_whitelist.h',
304 'cert/ct_known_logs.cc', 306 'cert/ct_known_logs.cc',
305 'cert/ct_known_logs.h', 307 'cert/ct_known_logs.h',
306 'cert/ct_known_logs_static.h', 308 'cert/ct_known_logs_static.h',
307 'cert/ct_log_response_parser.cc', 309 'cert/ct_log_response_parser.cc',
308 'cert/ct_log_response_parser.h', 310 'cert/ct_log_response_parser.h',
309 'cert/ct_log_verifier.cc', 311 'cert/ct_log_verifier.cc',
310 'cert/ct_log_verifier.h', 312 'cert/ct_log_verifier.h',
311 'cert/ct_log_verifier_nss.cc', 313 'cert/ct_log_verifier_nss.cc',
312 'cert/ct_log_verifier_openssl.cc', 314 'cert/ct_log_verifier_openssl.cc',
313 'cert/ct_objects_extractor.h', 315 'cert/ct_objects_extractor.h',
(...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after
1276 'base/registry_controlled_domains/registry_controlled_domain_unittest.cc', 1278 'base/registry_controlled_domains/registry_controlled_domain_unittest.cc',
1277 'base/sdch_manager_unittest.cc', 1279 'base/sdch_manager_unittest.cc',
1278 'base/static_cookie_policy_unittest.cc', 1280 'base/static_cookie_policy_unittest.cc',
1279 'base/test_completion_callback_unittest.cc', 1281 'base/test_completion_callback_unittest.cc',
1280 'base/upload_bytes_element_reader_unittest.cc', 1282 'base/upload_bytes_element_reader_unittest.cc',
1281 'base/upload_data_stream_unittest.cc', 1283 'base/upload_data_stream_unittest.cc',
1282 'base/upload_file_element_reader_unittest.cc', 1284 'base/upload_file_element_reader_unittest.cc',
1283 'base/url_util_unittest.cc', 1285 'base/url_util_unittest.cc',
1284 'cert/cert_verify_proc_unittest.cc', 1286 'cert/cert_verify_proc_unittest.cc',
1285 'cert/crl_set_unittest.cc', 1287 'cert/crl_set_unittest.cc',
1288 'cert/ct_ev_whitelist_unittest.cc',
1286 'cert/ct_log_response_parser_unittest.cc', 1289 'cert/ct_log_response_parser_unittest.cc',
1287 'cert/ct_log_verifier_unittest.cc', 1290 'cert/ct_log_verifier_unittest.cc',
1288 'cert/ct_objects_extractor_unittest.cc', 1291 'cert/ct_objects_extractor_unittest.cc',
1289 'cert/ct_serialization_unittest.cc', 1292 'cert/ct_serialization_unittest.cc',
1290 'cert/ev_root_ca_metadata_unittest.cc', 1293 'cert/ev_root_ca_metadata_unittest.cc',
1291 'cert/jwk_serializer_unittest.cc', 1294 'cert/jwk_serializer_unittest.cc',
1292 'cert/multi_log_ct_verifier_unittest.cc', 1295 'cert/multi_log_ct_verifier_unittest.cc',
1293 'cert/multi_threaded_cert_verifier_unittest.cc', 1296 'cert/multi_threaded_cert_verifier_unittest.cc',
1294 'cert/nss_cert_database_chromeos_unittest.cc', 1297 'cert/nss_cert_database_chromeos_unittest.cc',
1295 'cert/nss_cert_database_unittest.cc', 1298 'cert/nss_cert_database_unittest.cc',
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
1737 'tools/quic/test_tools/quic_test_client.h', 1740 'tools/quic/test_tools/quic_test_client.h',
1738 'tools/quic/test_tools/quic_test_utils.cc', 1741 'tools/quic/test_tools/quic_test_utils.cc',
1739 'tools/quic/test_tools/quic_test_utils.h', 1742 'tools/quic/test_tools/quic_test_utils.h',
1740 'tools/quic/test_tools/server_thread.h', 1743 'tools/quic/test_tools/server_thread.h',
1741 'tools/quic/test_tools/server_thread.cc', 1744 'tools/quic/test_tools/server_thread.cc',
1742 'tools/quic/test_tools/simple_client.h', 1745 'tools/quic/test_tools/simple_client.h',
1743 'tools/quic/test_tools/simple_client.cc', 1746 'tools/quic/test_tools/simple_client.cc',
1744 ], 1747 ],
1745 } 1748 }
1746 } 1749 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698