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

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: 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
Index: Source/modules/modules.gypi
diff --git a/Source/modules/modules.gypi b/Source/modules/modules.gypi
index cfdcc967b90faac3673d6c3657b9d6a377e9e560..aef45fee3c0e4046850a1a92cc232f23acc0d954 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',
@@ -192,10 +196,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',

Powered by Google App Engine
This is Rietveld 408576698