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

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: 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
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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 'webmidi/MIDIMessageEvent.idl', 189 'webmidi/MIDIMessageEvent.idl',
186 'webmidi/MIDIOutput.idl', 190 'webmidi/MIDIOutput.idl',
187 'webmidi/MIDIPort.idl', 191 'webmidi/MIDIPort.idl',
188 'webmidi/MIDISuccessCallback.idl', 192 'webmidi/MIDISuccessCallback.idl',
189 'webmidi/NavigatorWebMIDI.idl', 193 'webmidi/NavigatorWebMIDI.idl',
190 'websockets/CloseEvent.idl', 194 'websockets/CloseEvent.idl',
191 'websockets/WebSocket.idl', 195 'websockets/WebSocket.idl',
192 ], 196 ],
193 'modules_files': [ 197 'modules_files': [
194 '<@(extra_blink_module_files)', 198 '<@(extra_blink_module_files)',
199 'crypto/AesCbcParams.cpp',
200 'crypto/AesCbcParams.h',
201 'crypto/AesKeyGenParams.cpp',
202 'crypto/AesKeyGenParams.h',
203 'crypto/Algorithm.cpp',
204 'crypto/Algorithm.h',
195 'crypto/Crypto.cpp', 205 'crypto/Crypto.cpp',
196 'crypto/Crypto.h', 206 'crypto/Crypto.h',
207 'crypto/CryptoOperation.cpp',
208 'crypto/CryptoOperation.h',
197 'crypto/DOMWindowCrypto.cpp', 209 'crypto/DOMWindowCrypto.cpp',
198 'crypto/DOMWindowCrypto.h', 210 'crypto/DOMWindowCrypto.h',
211 'crypto/NormalizeAlgorithm.cpp',
212 'crypto/NormalizeAlgorithm.h',
199 'crypto/SubtleCrypto.cpp', 213 'crypto/SubtleCrypto.cpp',
200 'crypto/SubtleCrypto.h', 214 'crypto/SubtleCrypto.h',
201 'crypto/WorkerGlobalScopeCrypto.cpp', 215 'crypto/WorkerGlobalScopeCrypto.cpp',
202 'crypto/WorkerGlobalScopeCrypto.h', 216 'crypto/WorkerGlobalScopeCrypto.h',
203 'crypto/WorkerCrypto.cpp', 217 'crypto/WorkerCrypto.cpp',
204 'crypto/WorkerCrypto.h', 218 'crypto/WorkerCrypto.h',
205 'device_orientation/DeviceAcceleration.cpp', 219 'device_orientation/DeviceAcceleration.cpp',
206 'device_orientation/DeviceAcceleration.h', 220 'device_orientation/DeviceAcceleration.h',
207 'device_orientation/DeviceMotionClient.h', 221 'device_orientation/DeviceMotionClient.h',
208 'device_orientation/DeviceMotionController.cpp', 222 'device_orientation/DeviceMotionController.cpp',
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 'websockets/WorkerThreadableWebSocketChannel.h', 708 'websockets/WorkerThreadableWebSocketChannel.h',
695 ], 709 ],
696 'modules_unittest_files': [ 710 'modules_unittest_files': [
697 'websockets/WebSocketDeflaterTest.cpp', 711 'websockets/WebSocketDeflaterTest.cpp',
698 'websockets/WebSocketExtensionDispatcherTest.cpp', 712 'websockets/WebSocketExtensionDispatcherTest.cpp',
699 'websockets/WebSocketExtensionParserTest.cpp', 713 'websockets/WebSocketExtensionParserTest.cpp',
700 'websockets/WebSocketPerMessageDeflateTest.cpp', 714 'websockets/WebSocketPerMessageDeflateTest.cpp',
701 ], 715 ],
702 }, 716 },
703 } 717 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698