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

Unified Diff: content/content_child.gypi

Issue 379383002: Refactor WebCrypto code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase onto master Created 6 years, 5 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: content/content_child.gypi
diff --git a/content/content_child.gypi b/content/content_child.gypi
index e17f3e67a5b1c25f3cba15dad61ab37a03d7b182..213bec72a09e8609e01d1c317a390aca55e2ba78 100644
--- a/content/content_child.gypi
+++ b/content/content_child.gypi
@@ -195,15 +195,21 @@
'child/web_url_loader_impl.h',
'child/webblobregistry_impl.cc',
'child/webblobregistry_impl.h',
+ 'child/webcrypto/algorithm_dispatch.cc',
+ 'child/webcrypto/algorithm_dispatch.h',
+ 'child/webcrypto/algorithm_implementation.cc',
+ 'child/webcrypto/algorithm_implementation.h',
+ 'child/webcrypto/algorithm_registry.cc',
+ 'child/webcrypto/algorithm_registry.h',
'child/webcrypto/crypto_data.cc',
'child/webcrypto/crypto_data.h',
'child/webcrypto/jwk.cc',
'child/webcrypto/jwk.h',
'child/webcrypto/platform_crypto.h',
- 'child/webcrypto/shared_crypto.cc',
- 'child/webcrypto/shared_crypto.h',
'child/webcrypto/status.cc',
'child/webcrypto/status.h',
+ 'child/webcrypto/structured_clone.cc',
+ 'child/webcrypto/structured_clone.h',
'child/webcrypto/webcrypto_impl.cc',
'child/webcrypto/webcrypto_impl.h',
'child/webcrypto/webcrypto_util.cc',
@@ -234,10 +240,38 @@
'child/worker_thread_task_runner.h',
],
'webcrypto_nss_sources': [
- 'child/webcrypto/platform_crypto_nss.cc',
+ 'child/webcrypto/nss/aes_cbc_nss.cc',
+ 'child/webcrypto/nss/aes_gcm_nss.cc',
+ 'child/webcrypto/nss/aes_key_nss.cc',
+ 'child/webcrypto/nss/aes_key_nss.h',
+ 'child/webcrypto/nss/aes_kw_nss.cc',
+ 'child/webcrypto/nss/hmac_nss.cc',
+ 'child/webcrypto/nss/key_nss.cc',
+ 'child/webcrypto/nss/key_nss.h',
+ 'child/webcrypto/nss/rsa_key_nss.cc',
+ 'child/webcrypto/nss/rsa_key_nss.h',
+ 'child/webcrypto/nss/rsa_oaep_nss.cc',
+ 'child/webcrypto/nss/rsa_ssa_nss.cc',
+ 'child/webcrypto/nss/sha_nss.cc',
+ 'child/webcrypto/nss/sym_key_nss.cc',
+ 'child/webcrypto/nss/sym_key_nss.h',
+ 'child/webcrypto/nss/util_nss.cc',
+ 'child/webcrypto/nss/util_nss.h',
],
'webcrypto_openssl_sources': [
- 'child/webcrypto/platform_crypto_openssl.cc',
+ 'child/webcrypto/openssl/aes_cbc_openssl.cc',
+ 'child/webcrypto/openssl/aes_gcm_openssl.cc',
+ 'child/webcrypto/openssl/aes_key_openssl.cc',
+ 'child/webcrypto/openssl/aes_key_openssl.h',
+ 'child/webcrypto/openssl/aes_kw_openssl.cc',
+ 'child/webcrypto/openssl/hmac_openssl.cc',
+ 'child/webcrypto/openssl/key_openssl.cc',
+ 'child/webcrypto/openssl/key_openssl.h',
+ 'child/webcrypto/openssl/sha_openssl.cc',
+ 'child/webcrypto/openssl/sym_key_openssl.cc',
+ 'child/webcrypto/openssl/sym_key_openssl.h',
+ 'child/webcrypto/openssl/util_openssl.cc',
+ 'child/webcrypto/openssl/util_openssl.h',
],
},
'sources': [
« content/child/webcrypto/webcrypto_util.cc ('K') | « content/child/webcrypto/webcrypto_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698