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

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

Issue 16820007: Expose crypto.getRandomValues() to workers. (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 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 'crypto/Crypto.idl', 12 'crypto/Crypto.idl',
13 'crypto/DOMWindowCrypto.idl', 13 'crypto/DOMWindowCrypto.idl',
14 'crypto/RandomSource.idl',
14 'crypto/SubtleCrypto.idl', 15 'crypto/SubtleCrypto.idl',
16 'crypto/WorkerContextCrypto.idl',
15 'device_orientation/DeviceAcceleration.idl', 17 'device_orientation/DeviceAcceleration.idl',
16 'device_orientation/DeviceMotionEvent.idl', 18 'device_orientation/DeviceMotionEvent.idl',
17 'device_orientation/DeviceRotationRate.idl', 19 'device_orientation/DeviceRotationRate.idl',
18 'donottrack/NavigatorDoNotTrack.idl', 20 'donottrack/NavigatorDoNotTrack.idl',
19 'encryptedmedia/MediaKeyMessageEvent.idl', 21 'encryptedmedia/MediaKeyMessageEvent.idl',
20 'encryptedmedia/MediaKeyNeededEvent.idl', 22 'encryptedmedia/MediaKeyNeededEvent.idl',
21 'encryptedmedia/MediaKeys.idl', 23 'encryptedmedia/MediaKeys.idl',
22 'encryptedmedia/MediaKeySession.idl', 24 'encryptedmedia/MediaKeySession.idl',
23 'filesystem/DOMFileSystem.idl', 25 'filesystem/DOMFileSystem.idl',
24 'filesystem/DOMFileSystemSync.idl', 26 'filesystem/DOMFileSystemSync.idl',
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 'websockets/CloseEvent.idl', 182 'websockets/CloseEvent.idl',
181 'websockets/WebSocket.idl', 183 'websockets/WebSocket.idl',
182 'websockets/WorkerContextWebSocket.idl', 184 'websockets/WorkerContextWebSocket.idl',
183 ], 185 ],
184 'modules_files': [ 186 'modules_files': [
185 '<@(extra_blink_module_files)', 187 '<@(extra_blink_module_files)',
186 'crypto/Crypto.cpp', 188 'crypto/Crypto.cpp',
187 'crypto/Crypto.h', 189 'crypto/Crypto.h',
188 'crypto/DOMWindowCrypto.cpp', 190 'crypto/DOMWindowCrypto.cpp',
189 'crypto/DOMWindowCrypto.h', 191 'crypto/DOMWindowCrypto.h',
192 'crypto/RandomSource.cpp',
193 'crypto/RandomSource.h',
190 'crypto/SubtleCrypto.cpp', 194 'crypto/SubtleCrypto.cpp',
191 'crypto/SubtleCrypto.h', 195 'crypto/SubtleCrypto.h',
196 'crypto/WorkerContextCrypto.cpp',
197 'crypto/WorkerContextCrypto.h',
192 'device_orientation/DeviceAcceleration.cpp', 198 'device_orientation/DeviceAcceleration.cpp',
193 'device_orientation/DeviceAcceleration.h', 199 'device_orientation/DeviceAcceleration.h',
194 'device_orientation/DeviceMotionClient.h', 200 'device_orientation/DeviceMotionClient.h',
195 'device_orientation/DeviceMotionController.cpp', 201 'device_orientation/DeviceMotionController.cpp',
196 'device_orientation/DeviceMotionController.h', 202 'device_orientation/DeviceMotionController.h',
197 'device_orientation/DeviceMotionData.cpp', 203 'device_orientation/DeviceMotionData.cpp',
198 'device_orientation/DeviceMotionData.h', 204 'device_orientation/DeviceMotionData.h',
199 'device_orientation/DeviceMotionDispatcher.cpp', 205 'device_orientation/DeviceMotionDispatcher.cpp',
200 'device_orientation/DeviceMotionDispatcher.h', 206 'device_orientation/DeviceMotionDispatcher.h',
201 'device_orientation/DeviceMotionEvent.h', 207 'device_orientation/DeviceMotionEvent.h',
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 'websockets/WorkerThreadableWebSocketChannel.cpp', 674 'websockets/WorkerThreadableWebSocketChannel.cpp',
669 'websockets/WorkerThreadableWebSocketChannel.h', 675 'websockets/WorkerThreadableWebSocketChannel.h',
670 ], 676 ],
671 'modules_unittest_files': [ 677 'modules_unittest_files': [
672 'websockets/WebSocketDeflaterTest.cpp', 678 'websockets/WebSocketDeflaterTest.cpp',
673 'websockets/WebSocketExtensionDispatcherTest.cpp', 679 'websockets/WebSocketExtensionDispatcherTest.cpp',
674 'websockets/WebSocketPerMessageDeflateTest.cpp', 680 'websockets/WebSocketPerMessageDeflateTest.cpp',
675 ], 681 ],
676 }, 682 },
677 } 683 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698