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

Unified Diff: components/cronet.gypi

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: Fix comments Created 4 years, 6 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
« no previous file with comments | « no previous file | components/cronet/android/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cronet.gypi
diff --git a/components/cronet.gypi b/components/cronet.gypi
index 9631e31b401e4ee5d1500f582950aab022b629d6..dae9af715d4293ee88eb5b16f6fbb3f9642a9bd2 100644
--- a/components/cronet.gypi
+++ b/components/cronet.gypi
@@ -174,6 +174,24 @@
],
},
{
+ # Protobuf compiler / generator for certificate verifcation protocol
+ # buffer.
+ # GN version: //cronet:cronet_android_cert_proto
+ 'target_name': 'cronet_android_cert_proto',
+ 'type': 'static_library',
+ 'sources': [
+ 'cronet/android/cert/proto/cert_verification.proto',
+ ],
+ 'variables': {
+ 'enable_wexit_time_destructors': 1,
+ 'proto_in_dir': 'cronet/android/cert/proto',
+ 'proto_out_dir': 'cronet/android/cert/proto',
+ },
+ 'includes': [
+ '../build/protoc.gypi',
+ ],
+ },
+ {
'target_name': 'cronet_static',
'type': 'static_library',
'dependencies': [
@@ -525,14 +543,17 @@
'target_name': 'cronet_unittests',
'type': '<(gtest_target_type)',
'dependencies': [
+ 'cronet_android_cert_proto',
'cronet_static',
'metrics',
'../base/base.gyp:base',
'../base/base.gyp:test_support_base',
+ '../net/net.gyp:net_test_support',
'../testing/gtest.gyp:gtest',
'../testing/android/native_test.gyp:native_test_native_code',
],
'sources': [
+ 'cronet/android/cert/cert_verifier_cache_serializer_unittest.cc',
'cronet/run_all_unittests.cc',
'cronet/url_request_context_config_unittest.cc',
'cronet/histogram_manager_unittest.cc',
« no previous file with comments | « no previous file | components/cronet/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698