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

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

Issue 23164012: WebCrypto: Remove support for multi-part operations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Sync to tot Created 7 years, 4 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/SubtleCrypto.idl ('k') | Source/testing/runner/MockWebCrypto.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 '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/CryptoOperation.idl',
18 'crypto/HmacParams.idl', 17 'crypto/HmacParams.idl',
19 'crypto/Key.idl', 18 'crypto/Key.idl',
20 'crypto/RsaKeyGenParams.idl', 19 'crypto/RsaKeyGenParams.idl',
21 'crypto/RsaSsaParams.idl', 20 'crypto/RsaSsaParams.idl',
22 'crypto/SubtleCrypto.idl', 21 'crypto/SubtleCrypto.idl',
23 'crypto/WorkerCrypto.idl', 22 'crypto/WorkerCrypto.idl',
24 'device_orientation/DeviceAcceleration.idl', 23 'device_orientation/DeviceAcceleration.idl',
25 'device_orientation/DeviceMotionEvent.idl', 24 'device_orientation/DeviceMotionEvent.idl',
26 'device_orientation/DeviceOrientationEvent.idl', 25 'device_orientation/DeviceOrientationEvent.idl',
27 'device_orientation/DeviceRotationRate.idl', 26 'device_orientation/DeviceRotationRate.idl',
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 'modules_files': [ 206 'modules_files': [
208 '<@(extra_blink_module_files)', 207 '<@(extra_blink_module_files)',
209 'crypto/AesCbcParams.cpp', 208 'crypto/AesCbcParams.cpp',
210 'crypto/AesCbcParams.h', 209 'crypto/AesCbcParams.h',
211 'crypto/AesKeyGenParams.cpp', 210 'crypto/AesKeyGenParams.cpp',
212 'crypto/AesKeyGenParams.h', 211 'crypto/AesKeyGenParams.h',
213 'crypto/Algorithm.cpp', 212 'crypto/Algorithm.cpp',
214 'crypto/Algorithm.h', 213 'crypto/Algorithm.h',
215 'crypto/Crypto.cpp', 214 'crypto/Crypto.cpp',
216 'crypto/Crypto.h', 215 'crypto/Crypto.h',
217 'crypto/CryptoOperation.cpp',
218 'crypto/CryptoOperation.h',
219 'crypto/DOMWindowCrypto.cpp', 216 'crypto/DOMWindowCrypto.cpp',
220 'crypto/DOMWindowCrypto.h', 217 'crypto/DOMWindowCrypto.h',
221 'crypto/HmacParams.cpp', 218 'crypto/HmacParams.cpp',
222 'crypto/HmacParams.h', 219 'crypto/HmacParams.h',
223 'crypto/Key.cpp', 220 'crypto/Key.cpp',
224 'crypto/Key.h', 221 'crypto/Key.h',
225 'crypto/KeyOperation.cpp',
226 'crypto/KeyOperation.h',
227 'crypto/NormalizeAlgorithm.cpp', 222 'crypto/NormalizeAlgorithm.cpp',
228 'crypto/NormalizeAlgorithm.h', 223 'crypto/NormalizeAlgorithm.h',
229 'crypto/RsaKeyGenParams.cpp', 224 'crypto/RsaKeyGenParams.cpp',
230 'crypto/RsaKeyGenParams.h', 225 'crypto/RsaKeyGenParams.h',
231 'crypto/RsaSsaParams.cpp', 226 'crypto/RsaSsaParams.cpp',
232 'crypto/RsaSsaParams.h', 227 'crypto/RsaSsaParams.h',
233 'crypto/SubtleCrypto.cpp', 228 'crypto/SubtleCrypto.cpp',
234 'crypto/SubtleCrypto.h', 229 'crypto/SubtleCrypto.h',
235 'crypto/WorkerCrypto.cpp', 230 'crypto/WorkerCrypto.cpp',
236 'crypto/WorkerCrypto.h', 231 'crypto/WorkerCrypto.h',
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 'indexeddb/IDBKeyPathTest.cpp', 752 'indexeddb/IDBKeyPathTest.cpp',
758 'indexeddb/IDBRequestTest.cpp', 753 'indexeddb/IDBRequestTest.cpp',
759 'indexeddb/IDBTransactionTest.cpp', 754 'indexeddb/IDBTransactionTest.cpp',
760 'websockets/WebSocketDeflaterTest.cpp', 755 'websockets/WebSocketDeflaterTest.cpp',
761 'websockets/WebSocketExtensionDispatcherTest.cpp', 756 'websockets/WebSocketExtensionDispatcherTest.cpp',
762 'websockets/WebSocketExtensionParserTest.cpp', 757 'websockets/WebSocketExtensionParserTest.cpp',
763 'websockets/WebSocketPerMessageDeflateTest.cpp', 758 'websockets/WebSocketPerMessageDeflateTest.cpp',
764 ], 759 ],
765 }, 760 },
766 } 761 }
OLDNEW
« no previous file with comments | « Source/modules/crypto/SubtleCrypto.idl ('k') | Source/testing/runner/MockWebCrypto.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698