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

Unified Diff: net/net.gyp

Issue 1892033002: Cert - protobufs to serialize and deserialize CertVerifierCache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 95879db27d22cc2de89651027eebc9a21ee8c61c..c3f7be3cbcda9413502d723e057f753fdb0b1e7b 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_cert_proto
+ 'target_name': 'net_cert_proto',
+ 'type': 'static_library',
+ 'sources': [
+ 'cert/proto/cert_verification.proto',
+ ],
+ 'variables': {
+ 'enable_wexit_time_destructors': 1,
+ 'proto_in_dir': 'cert/proto',
+ 'proto_out_dir': 'net/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_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