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

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

Issue 179353002: [webcrypto] Add the KeyAlgorithm interface. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase yet again (another conflict) Created 6 years, 10 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/RsaKeyAlgorithm.idl ('k') | Source/platform/blink_platform.gypi » ('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 # Files for which bindings (.cpp and .h files) will be generated 10 # Files for which bindings (.cpp and .h files) will be generated
11 'modules_idl_files': [ 11 'modules_idl_files': [
12 '<@(extra_blink_module_idl_files)', 12 '<@(extra_blink_module_idl_files)',
13 'crypto/Algorithm.idl', 13 'crypto/AesKeyAlgorithm.idl',
14 'crypto/Crypto.idl', 14 'crypto/Crypto.idl',
15 'crypto/HmacKeyAlgorithm.idl',
15 'crypto/Key.idl', 16 'crypto/Key.idl',
17 'crypto/KeyAlgorithm.idl',
16 'crypto/KeyPair.idl', 18 'crypto/KeyPair.idl',
19 'crypto/RsaHashedKeyAlgorithm.idl',
20 'crypto/RsaKeyAlgorithm.idl',
17 'crypto/SubtleCrypto.idl', 21 'crypto/SubtleCrypto.idl',
18 'crypto/WorkerCrypto.idl', 22 'crypto/WorkerCrypto.idl',
19 'device_orientation/DeviceAcceleration.idl', 23 'device_orientation/DeviceAcceleration.idl',
20 'device_orientation/DeviceMotionEvent.idl', 24 'device_orientation/DeviceMotionEvent.idl',
21 'device_orientation/DeviceOrientationEvent.idl', 25 'device_orientation/DeviceOrientationEvent.idl',
22 'device_orientation/DeviceRotationRate.idl', 26 'device_orientation/DeviceRotationRate.idl',
23 'encoding/TextDecoder.idl', 27 'encoding/TextDecoder.idl',
24 'encoding/TextEncoder.idl', 28 'encoding/TextEncoder.idl',
25 'encryptedmedia/MediaKeyMessageEvent.idl', 29 'encryptedmedia/MediaKeyMessageEvent.idl',
26 'encryptedmedia/MediaKeyNeededEvent.idl', 30 'encryptedmedia/MediaKeyNeededEvent.idl',
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 'screen_orientation/ScreenOrientation.idl', 212 'screen_orientation/ScreenOrientation.idl',
209 'serviceworkers/NavigatorServiceWorker.idl', 213 'serviceworkers/NavigatorServiceWorker.idl',
210 'speech/WindowSpeechSynthesis.idl', 214 'speech/WindowSpeechSynthesis.idl',
211 'vibration/NavigatorVibration.idl', 215 'vibration/NavigatorVibration.idl',
212 'webdatabase/WindowWebDatabase.idl', 216 'webdatabase/WindowWebDatabase.idl',
213 'webdatabase/WorkerGlobalScopeWebDatabase.idl', 217 'webdatabase/WorkerGlobalScopeWebDatabase.idl',
214 'webmidi/NavigatorWebMIDI.idl', 218 'webmidi/NavigatorWebMIDI.idl',
215 ], 219 ],
216 'modules_files': [ 220 'modules_files': [
217 '<@(extra_blink_module_files)', 221 '<@(extra_blink_module_files)',
218 'crypto/Algorithm.cpp',
219 'crypto/Algorithm.h',
220 'crypto/Crypto.cpp', 222 'crypto/Crypto.cpp',
221 'crypto/Crypto.h', 223 'crypto/Crypto.h',
222 'crypto/CryptoResultImpl.cpp', 224 'crypto/CryptoResultImpl.cpp',
223 'crypto/CryptoResultImpl.h', 225 'crypto/CryptoResultImpl.h',
224 'crypto/DOMWindowCrypto.cpp', 226 'crypto/DOMWindowCrypto.cpp',
225 'crypto/DOMWindowCrypto.h', 227 'crypto/DOMWindowCrypto.h',
226 'crypto/Key.cpp', 228 'crypto/Key.cpp',
229 'crypto/AesKeyAlgorithm.cpp',
230 'crypto/AesKeyAlgorithm.h',
231 'crypto/HmacKeyAlgorithm.cpp',
232 'crypto/HmacKeyAlgorithm.h',
227 'crypto/Key.h', 233 'crypto/Key.h',
234 'crypto/KeyAlgorithm.cpp',
235 'crypto/KeyAlgorithm.h',
236 'crypto/RsaHashedKeyAlgorithm.cpp',
237 'crypto/RsaHashedKeyAlgorithm.h',
238 'crypto/RsaKeyAlgorithm.cpp',
239 'crypto/RsaKeyAlgorithm.h',
228 'crypto/KeyPair.cpp', 240 'crypto/KeyPair.cpp',
229 'crypto/KeyPair.h', 241 'crypto/KeyPair.h',
230 'crypto/NormalizeAlgorithm.cpp', 242 'crypto/NormalizeAlgorithm.cpp',
231 'crypto/NormalizeAlgorithm.h', 243 'crypto/NormalizeAlgorithm.h',
232 'crypto/SubtleCrypto.cpp', 244 'crypto/SubtleCrypto.cpp',
233 'crypto/SubtleCrypto.h', 245 'crypto/SubtleCrypto.h',
234 'crypto/WorkerCrypto.cpp', 246 'crypto/WorkerCrypto.cpp',
235 'crypto/WorkerCrypto.h', 247 'crypto/WorkerCrypto.h',
236 'crypto/WorkerGlobalScopeCrypto.cpp', 248 'crypto/WorkerGlobalScopeCrypto.cpp',
237 'crypto/WorkerGlobalScopeCrypto.h', 249 'crypto/WorkerGlobalScopeCrypto.h',
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
844 'indexeddb/IDBKeyPathTest.cpp', 856 'indexeddb/IDBKeyPathTest.cpp',
845 'indexeddb/IDBRequestTest.cpp', 857 'indexeddb/IDBRequestTest.cpp',
846 'indexeddb/IDBTransactionTest.cpp', 858 'indexeddb/IDBTransactionTest.cpp',
847 'websockets/WebSocketDeflaterTest.cpp', 859 'websockets/WebSocketDeflaterTest.cpp',
848 'websockets/WebSocketExtensionDispatcherTest.cpp', 860 'websockets/WebSocketExtensionDispatcherTest.cpp',
849 'websockets/WebSocketExtensionParserTest.cpp', 861 'websockets/WebSocketExtensionParserTest.cpp',
850 'websockets/WebSocketPerMessageDeflateTest.cpp', 862 'websockets/WebSocketPerMessageDeflateTest.cpp',
851 ], 863 ],
852 }, 864 },
853 } 865 }
OLDNEW
« no previous file with comments | « Source/modules/crypto/RsaKeyAlgorithm.idl ('k') | Source/platform/blink_platform.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698