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

Unified Diff: Source/modules/modules.gypi

Issue 179353002: [webcrypto] Add the KeyAlgorithm interface. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Inline the empty trace() Created 6 years, 10 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: Source/modules/modules.gypi
diff --git a/Source/modules/modules.gypi b/Source/modules/modules.gypi
index efa06f9538523aca5a91a2e93edf97b5974368f9..6ed2f3500742649af838d1fb29b0f45f1f73b7e0 100644
--- a/Source/modules/modules.gypi
+++ b/Source/modules/modules.gypi
@@ -10,10 +10,14 @@
# Files for which bindings (.cpp and .h files) will be generated
'modules_idl_files': [
'<@(extra_blink_module_idl_files)',
- 'crypto/Algorithm.idl',
+ 'crypto/AesKeyAlgorithm.idl',
'crypto/Crypto.idl',
+ 'crypto/HmacKeyAlgorithm.idl',
'crypto/Key.idl',
+ 'crypto/KeyAlgorithm.idl',
'crypto/KeyPair.idl',
+ 'crypto/RsaHashedKeyAlgorithm.idl',
+ 'crypto/RsaKeyAlgorithm.idl',
'crypto/SubtleCrypto.idl',
'crypto/WorkerCrypto.idl',
'device_orientation/DeviceAcceleration.idl',
@@ -215,8 +219,6 @@
],
'modules_files': [
'<@(extra_blink_module_files)',
- 'crypto/Algorithm.cpp',
- 'crypto/Algorithm.h',
'crypto/Crypto.cpp',
'crypto/Crypto.h',
'crypto/CryptoResultImpl.cpp',
@@ -224,7 +226,17 @@
'crypto/DOMWindowCrypto.cpp',
'crypto/DOMWindowCrypto.h',
'crypto/Key.cpp',
+ 'crypto/AesKeyAlgorithm.cpp',
+ 'crypto/AesKeyAlgorithm.h',
+ 'crypto/HmacKeyAlgorithm.cpp',
+ 'crypto/HmacKeyAlgorithm.h',
'crypto/Key.h',
+ 'crypto/KeyAlgorithm.cpp',
+ 'crypto/KeyAlgorithm.h',
+ 'crypto/RsaHashedKeyAlgorithm.cpp',
+ 'crypto/RsaHashedKeyAlgorithm.h',
+ 'crypto/RsaKeyAlgorithm.cpp',
+ 'crypto/RsaKeyAlgorithm.h',
'crypto/KeyPair.cpp',
'crypto/KeyPair.h',
'crypto/NormalizeAlgorithm.cpp',

Powered by Google App Engine
This is Rietveld 408576698