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

Unified Diff: net/net.gyp

Issue 2021433004: Cert - protobufs to serialize and deserialize CertVerifierCache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Add_support_for_walking_1999733002
Patch Set: Added histogram for cache size Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index ea9f48873ef24142a8274f8e9e04b7248bc13a02..dbd054851d60f2d929738d43ed3e30d8a5271f51 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -80,6 +80,29 @@
},
},
{
+ # Protobuf compiler / generator for certificate verifcation protocol
+ # buffer.
+ # GN version: //net:net_extras_cert_proto
+ 'target_name': 'net_extras_cert_proto',
+ 'type': 'static_library',
+ 'sources': [
+ 'extras/cert/proto/cert_verification.proto',
+ ],
+ 'variables': {
+ 'enable_wexit_time_destructors': 1,
+ 'proto_in_dir': 'extras/cert/proto',
+ 'proto_out_dir': 'net/extras/cert/proto',
+ 'cc_generator_options': 'dllexport_decl=NET_EXPORT_PRIVATE:',
+ 'cc_include': 'net/base/net_export.h',
+ },
+ 'includes': [
+ '../build/protoc.gypi',
+ ],
+ 'defines': [
+ 'NET_IMPLEMENTATION',
+ ],
+ },
+ {
# Protobuf compiler / generator for QUIC crypto protocol buffer.
# GN version: //net:net_quic_proto
'target_name': 'net_quic_proto',
@@ -138,6 +161,7 @@
'../third_party/icu/icu.gyp:icui18n',
'../third_party/icu/icu.gyp:icuuc',
'../third_party/protobuf/protobuf.gyp:protobuf_lite',
+ 'net_extras_cert_proto',
'net_quic_proto',
],
}],
@@ -176,6 +200,7 @@
'../url/url.gyp:url_lib',
'balsa',
'net',
+ 'net_cert_proto',
'net_quic_proto',
'net_derived_sources',
'net_extras',

Powered by Google App Engine
This is Rietveld 408576698