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

Unified Diff: net/BUILD.gn

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: 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/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index 827ca6f47f71084fdaeefc68873bae7d23bbab35..ea7208dbd0f94de338654889a3794347846c0bac 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -117,6 +117,7 @@ component("net") {
]
public_deps = [
+ ":net_extras_cert_proto",
":net_quic_proto",
"//crypto",
"//crypto:platform",
@@ -423,6 +424,20 @@ grit("net_resources") {
]
}
+proto_library("net_extras_cert_proto") {
+ visibility = [ ":net" ]
+
+ sources = [
+ "extras/cert/proto/cert_verification.proto",
+ ]
+ cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
+ cc_include = "net/base/net_export.h"
+
+ defines = [ "NET_IMPLEMENTATION" ]
+
+ extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
+}
+
proto_library("net_quic_proto") {
visibility = [ ":net" ]
@@ -1672,9 +1687,7 @@ test("net_unittests") {
}
if (is_win) {
- libs = [
- "iphlpapi.lib",
- ]
+ libs = [ "iphlpapi.lib" ]
}
}
« no previous file with comments | « no previous file | net/extras/cert/cert_verifier_cache_persister.h » ('j') | net/extras/cert/cert_verifier_cache_persister.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698