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

Unified Diff: components/cast_certificate.gypi

Issue 1924323002: Move Cast certificate verification code from extensions to components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplified OWNERS files 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
« no previous file with comments | « components/OWNERS ('k') | components/cast_certificate/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cast_certificate.gypi
diff --git a/components/client_update_protocol.gypi b/components/cast_certificate.gypi
similarity index 50%
copy from components/client_update_protocol.gypi
copy to components/cast_certificate.gypi
index ba395d06f969ee70cf5451aa90b6c06e93ee2786..dc5f8e6d1fee36e82f989a63d375bd6ce2625747 100644
--- a/components/client_update_protocol.gypi
+++ b/components/cast_certificate.gypi
@@ -5,36 +5,37 @@
{
'targets': [
{
- # GN version: //components/client_update_protocol
- 'target_name': 'client_update_protocol',
+ 'target_name': 'cast_certificate',
'type': 'static_library',
- 'dependencies': [
- '../base/base.gyp:base',
- '../crypto/crypto.gyp:crypto',
- ],
-
'include_dirs': [
'..',
],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../net/net.gyp:net',
+ ],
'sources': [
- 'client_update_protocol/ecdsa.h',
- 'client_update_protocol/ecdsa.cc',
+ 'cast_certificate/cast_cert_validator.cc',
+ 'cast_certificate/cast_cert_validator.h',
+ 'cast_certificate/cast_root_ca_cert_der-inc.h',
+ 'cast_certificate/eureka_root_ca_der-inc.h',
],
},
{
- # GN version: //components/client_update_protocol:test_support
- 'target_name': 'client_update_protocol_test_support',
+ 'target_name': 'cast_certificate_test_support',
'type': 'static_library',
- 'dependencies': [
- 'update_client',
- '../testing/gtest.gyp:gtest',
- ],
-
'include_dirs': [
'..',
],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../net/net.gyp:net',
+ '../testing/gtest.gyp:gtest',
+ 'cast_certificate',
+ ],
'sources': [
- 'client_update_protocol/ecdsa_unittest.cc',
+ 'cast_certificate/cast_cert_validator_test_helpers.cc',
+ 'cast_certificate/cast_cert_validator_test_helpers.h',
],
},
],
« no previous file with comments | « components/OWNERS ('k') | components/cast_certificate/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698