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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/modules/crypto/WorkerGlobalScopeCrypto.cpp ('k') | public/platform/WebCryptoAlgorithm.h » ('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 'modules_idl_files': [ 11 'modules_idl_files': [
12 '<@(extra_blink_module_idl_files)', 12 '<@(extra_blink_module_idl_files)',
13 'crypto/AesCbcParams.idl',
14 'crypto/AesKeyGenParams.idl',
15 'crypto/Algorithm.idl',
13 'crypto/Crypto.idl', 16 'crypto/Crypto.idl',
17 'crypto/CryptoOperation.idl',
14 'crypto/SubtleCrypto.idl', 18 'crypto/SubtleCrypto.idl',
15 'crypto/WindowCrypto.idl', 19 'crypto/WindowCrypto.idl',
16 'crypto/WorkerGlobalScopeCrypto.idl', 20 'crypto/WorkerGlobalScopeCrypto.idl',
17 'crypto/WorkerCrypto.idl', 21 'crypto/WorkerCrypto.idl',
18 'device_orientation/DeviceAcceleration.idl', 22 'device_orientation/DeviceAcceleration.idl',
19 'device_orientation/DeviceMotionEvent.idl', 23 'device_orientation/DeviceMotionEvent.idl',
20 'device_orientation/DeviceRotationRate.idl', 24 'device_orientation/DeviceRotationRate.idl',
21 'donottrack/NavigatorDoNotTrack.idl', 25 'donottrack/NavigatorDoNotTrack.idl',
22 'encryptedmedia/MediaKeyMessageEvent.idl', 26 'encryptedmedia/MediaKeyMessageEvent.idl',
23 'encryptedmedia/MediaKeyNeededEvent.idl', 27 'encryptedmedia/MediaKeyNeededEvent.idl',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 'webmidi/MIDIMessageEvent.idl', 188 'webmidi/MIDIMessageEvent.idl',
185 'webmidi/MIDIOutput.idl', 189 'webmidi/MIDIOutput.idl',
186 'webmidi/MIDIPort.idl', 190 'webmidi/MIDIPort.idl',
187 'webmidi/MIDISuccessCallback.idl', 191 'webmidi/MIDISuccessCallback.idl',
188 'webmidi/NavigatorWebMIDI.idl', 192 'webmidi/NavigatorWebMIDI.idl',
189 'websockets/CloseEvent.idl', 193 'websockets/CloseEvent.idl',
190 'websockets/WebSocket.idl', 194 'websockets/WebSocket.idl',
191 ], 195 ],
192 'modules_files': [ 196 'modules_files': [
193 '<@(extra_blink_module_files)', 197 '<@(extra_blink_module_files)',
198 'crypto/AesCbcParams.cpp',
199 'crypto/AesCbcParams.h',
200 'crypto/AesKeyGenParams.cpp',
201 'crypto/AesKeyGenParams.h',
202 'crypto/Algorithm.cpp',
203 'crypto/Algorithm.h',
194 'crypto/Crypto.cpp', 204 'crypto/Crypto.cpp',
195 'crypto/Crypto.h', 205 'crypto/Crypto.h',
206 'crypto/CryptoOperation.cpp',
207 'crypto/CryptoOperation.h',
196 'crypto/DOMWindowCrypto.cpp', 208 'crypto/DOMWindowCrypto.cpp',
197 'crypto/DOMWindowCrypto.h', 209 'crypto/DOMWindowCrypto.h',
210 'crypto/NormalizeAlgorithm.cpp',
211 'crypto/NormalizeAlgorithm.h',
198 'crypto/SubtleCrypto.cpp', 212 'crypto/SubtleCrypto.cpp',
199 'crypto/SubtleCrypto.h', 213 'crypto/SubtleCrypto.h',
200 'crypto/WorkerGlobalScopeCrypto.cpp', 214 'crypto/WorkerGlobalScopeCrypto.cpp',
201 'crypto/WorkerGlobalScopeCrypto.h', 215 'crypto/WorkerGlobalScopeCrypto.h',
202 'crypto/WorkerCrypto.cpp', 216 'crypto/WorkerCrypto.cpp',
203 'crypto/WorkerCrypto.h', 217 'crypto/WorkerCrypto.h',
204 'device_orientation/DeviceAcceleration.cpp', 218 'device_orientation/DeviceAcceleration.cpp',
205 'device_orientation/DeviceAcceleration.h', 219 'device_orientation/DeviceAcceleration.h',
206 'device_orientation/DeviceMotionClient.h', 220 'device_orientation/DeviceMotionClient.h',
207 'device_orientation/DeviceMotionController.cpp', 221 'device_orientation/DeviceMotionController.cpp',
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 'websockets/WorkerThreadableWebSocketChannel.h', 706 'websockets/WorkerThreadableWebSocketChannel.h',
693 ], 707 ],
694 'modules_unittest_files': [ 708 'modules_unittest_files': [
695 'websockets/WebSocketDeflaterTest.cpp', 709 'websockets/WebSocketDeflaterTest.cpp',
696 'websockets/WebSocketExtensionDispatcherTest.cpp', 710 'websockets/WebSocketExtensionDispatcherTest.cpp',
697 'websockets/WebSocketExtensionParserTest.cpp', 711 'websockets/WebSocketExtensionParserTest.cpp',
698 'websockets/WebSocketPerMessageDeflateTest.cpp', 712 'websockets/WebSocketPerMessageDeflateTest.cpp',
699 ], 713 ],
700 }, 714 },
701 } 715 }
OLDNEW
« 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