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

Unified Diff: Source/modules/modules.gypi

Issue 18475002: WebCrypto: Add framework for AlgorithmIdentifier normalization. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rename verify --> verifySignature (because "verify" is a macro on Mac) Created 7 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 | « Source/modules/crypto/WorkerGlobalScopeCrypto.cpp ('k') | public/platform/WebCryptoAlgorithm.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/modules.gypi
diff --git a/Source/modules/modules.gypi b/Source/modules/modules.gypi
index df7c240711182492effbd54074eee04d20fc711b..03edd014cc6d91c90c1677ad49d528d5c3901432 100644
--- a/Source/modules/modules.gypi
+++ b/Source/modules/modules.gypi
@@ -10,7 +10,11 @@
'modules_idl_files': [
'<@(extra_blink_module_idl_files)',
+ 'crypto/AesCbcParams.idl',
+ 'crypto/AesKeyGenParams.idl',
+ 'crypto/Algorithm.idl',
'crypto/Crypto.idl',
+ 'crypto/CryptoOperation.idl',
'crypto/SubtleCrypto.idl',
'crypto/WindowCrypto.idl',
'crypto/WorkerGlobalScopeCrypto.idl',
@@ -191,10 +195,20 @@
],
'modules_files': [
'<@(extra_blink_module_files)',
+ 'crypto/AesCbcParams.cpp',
+ 'crypto/AesCbcParams.h',
+ 'crypto/AesKeyGenParams.cpp',
+ 'crypto/AesKeyGenParams.h',
+ 'crypto/Algorithm.cpp',
+ 'crypto/Algorithm.h',
'crypto/Crypto.cpp',
'crypto/Crypto.h',
+ 'crypto/CryptoOperation.cpp',
+ 'crypto/CryptoOperation.h',
'crypto/DOMWindowCrypto.cpp',
'crypto/DOMWindowCrypto.h',
+ 'crypto/NormalizeAlgorithm.cpp',
+ 'crypto/NormalizeAlgorithm.h',
'crypto/SubtleCrypto.cpp',
'crypto/SubtleCrypto.h',
'crypto/WorkerGlobalScopeCrypto.cpp',
« no previous file with comments | « Source/modules/crypto/WorkerGlobalScopeCrypto.cpp ('k') | public/platform/WebCryptoAlgorithm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698