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

Side by Side Diff: Source/modules/modules.gypi

Issue 23617006: WebCrypto: Add the KeyPair interface. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase onto master Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/modules/crypto/KeyPair.idl ('k') | Source/testing/runner/MockWebCrypto.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 # Experimental hooks for embedder to provide extra IDL and source files. 3 # Experimental hooks for embedder to provide extra IDL and source files.
4 # 4 #
5 # Note: this is not a supported API. If you rely on this, you will be broken 5 # Note: this is not a supported API. If you rely on this, you will be broken
6 # from time to time as the code generator changes in backward incompatible 6 # from time to time as the code generator changes in backward incompatible
7 # ways. 7 # ways.
8 'extra_blink_module_idl_files': [], 8 'extra_blink_module_idl_files': [],
9 'extra_blink_module_files': [], 9 'extra_blink_module_files': [],
10 10
11 'deprecated_perl_modules_idl_files': [ 11 'deprecated_perl_modules_idl_files': [
12 '<@(extra_blink_module_idl_files)', 12 '<@(extra_blink_module_idl_files)',
13 'crypto/AesCbcParams.idl', 13 'crypto/AesCbcParams.idl',
14 'crypto/AesKeyGenParams.idl', 14 'crypto/AesKeyGenParams.idl',
15 'crypto/Algorithm.idl', 15 'crypto/Algorithm.idl',
16 'crypto/Crypto.idl', 16 'crypto/Crypto.idl',
17 'crypto/HmacKeyParams.idl', 17 'crypto/HmacKeyParams.idl',
18 'crypto/HmacParams.idl', 18 'crypto/HmacParams.idl',
19 'crypto/Key.idl', 19 'crypto/Key.idl',
20 'crypto/KeyPair.idl',
20 'crypto/RsaKeyGenParams.idl', 21 'crypto/RsaKeyGenParams.idl',
21 'crypto/RsaSsaParams.idl', 22 'crypto/RsaSsaParams.idl',
22 'crypto/SubtleCrypto.idl', 23 'crypto/SubtleCrypto.idl',
23 'crypto/WorkerCrypto.idl', 24 'crypto/WorkerCrypto.idl',
24 'device_orientation/DeviceAcceleration.idl', 25 'device_orientation/DeviceAcceleration.idl',
25 'device_orientation/DeviceMotionEvent.idl', 26 'device_orientation/DeviceMotionEvent.idl',
26 'device_orientation/DeviceOrientationEvent.idl', 27 'device_orientation/DeviceOrientationEvent.idl',
27 'device_orientation/DeviceRotationRate.idl', 28 'device_orientation/DeviceRotationRate.idl',
28 'encoding/TextDecoder.idl', 29 'encoding/TextDecoder.idl',
29 'encoding/TextEncoder.idl', 30 'encoding/TextEncoder.idl',
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 'crypto/CryptoResult.cpp', 218 'crypto/CryptoResult.cpp',
218 'crypto/CryptoResult.h', 219 'crypto/CryptoResult.h',
219 'crypto/DOMWindowCrypto.cpp', 220 'crypto/DOMWindowCrypto.cpp',
220 'crypto/DOMWindowCrypto.h', 221 'crypto/DOMWindowCrypto.h',
221 'crypto/HmacKeyParams.cpp', 222 'crypto/HmacKeyParams.cpp',
222 'crypto/HmacKeyParams.h', 223 'crypto/HmacKeyParams.h',
223 'crypto/HmacParams.cpp', 224 'crypto/HmacParams.cpp',
224 'crypto/HmacParams.h', 225 'crypto/HmacParams.h',
225 'crypto/Key.cpp', 226 'crypto/Key.cpp',
226 'crypto/Key.h', 227 'crypto/Key.h',
228 'crypto/KeyPair.cpp',
229 'crypto/KeyPair.h',
227 'crypto/NormalizeAlgorithm.cpp', 230 'crypto/NormalizeAlgorithm.cpp',
228 'crypto/NormalizeAlgorithm.h', 231 'crypto/NormalizeAlgorithm.h',
229 'crypto/RsaKeyGenParams.cpp', 232 'crypto/RsaKeyGenParams.cpp',
230 'crypto/RsaKeyGenParams.h', 233 'crypto/RsaKeyGenParams.h',
231 'crypto/RsaSsaParams.cpp', 234 'crypto/RsaSsaParams.cpp',
232 'crypto/RsaSsaParams.h', 235 'crypto/RsaSsaParams.h',
233 'crypto/SubtleCrypto.cpp', 236 'crypto/SubtleCrypto.cpp',
234 'crypto/SubtleCrypto.h', 237 'crypto/SubtleCrypto.h',
235 'crypto/WorkerCrypto.cpp', 238 'crypto/WorkerCrypto.cpp',
236 'crypto/WorkerCrypto.h', 239 'crypto/WorkerCrypto.h',
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 'indexeddb/IDBKeyPathTest.cpp', 760 'indexeddb/IDBKeyPathTest.cpp',
758 'indexeddb/IDBRequestTest.cpp', 761 'indexeddb/IDBRequestTest.cpp',
759 'indexeddb/IDBTransactionTest.cpp', 762 'indexeddb/IDBTransactionTest.cpp',
760 'websockets/WebSocketDeflaterTest.cpp', 763 'websockets/WebSocketDeflaterTest.cpp',
761 'websockets/WebSocketExtensionDispatcherTest.cpp', 764 'websockets/WebSocketExtensionDispatcherTest.cpp',
762 'websockets/WebSocketExtensionParserTest.cpp', 765 'websockets/WebSocketExtensionParserTest.cpp',
763 'websockets/WebSocketPerMessageDeflateTest.cpp', 766 'websockets/WebSocketPerMessageDeflateTest.cpp',
764 ], 767 ],
765 }, 768 },
766 } 769 }
OLDNEW
« no previous file with comments | « Source/modules/crypto/KeyPair.idl ('k') | Source/testing/runner/MockWebCrypto.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698