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

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

Issue 16625011: Add minimal implementation of unprefixed MediaSource API that has feature parity with prefixed API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix global-constructors-listing-expected.txt 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
« no previous file with comments | « Source/modules/mediasource/SourceBufferList.idl ('k') | no next file » | 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
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'indexeddb/IDBFactory.idl', 65 'indexeddb/IDBFactory.idl',
66 'indexeddb/IDBIndex.idl', 66 'indexeddb/IDBIndex.idl',
67 'indexeddb/IDBKeyRange.idl', 67 'indexeddb/IDBKeyRange.idl',
68 'indexeddb/IDBObjectStore.idl', 68 'indexeddb/IDBObjectStore.idl',
69 'indexeddb/IDBOpenDBRequest.idl', 69 'indexeddb/IDBOpenDBRequest.idl',
70 'indexeddb/IDBRequest.idl', 70 'indexeddb/IDBRequest.idl',
71 'indexeddb/IDBTransaction.idl', 71 'indexeddb/IDBTransaction.idl',
72 'indexeddb/IDBVersionChangeEvent.idl', 72 'indexeddb/IDBVersionChangeEvent.idl',
73 'indexeddb/WorkerContextIndexedDatabase.idl', 73 'indexeddb/WorkerContextIndexedDatabase.idl',
74 'mediasource/DOMWindowMediaSource.idl', 74 'mediasource/DOMWindowMediaSource.idl',
75 'mediasource/MediaSource.idl',
76 'mediasource/SourceBuffer.idl',
77 'mediasource/SourceBufferList.idl',
75 'mediasource/WebKitMediaSource.idl', 78 'mediasource/WebKitMediaSource.idl',
76 'mediasource/WebKitSourceBuffer.idl', 79 'mediasource/WebKitSourceBuffer.idl',
77 'mediasource/WebKitSourceBufferList.idl', 80 'mediasource/WebKitSourceBufferList.idl',
78 'mediastream/MediaStream.idl', 81 'mediastream/MediaStream.idl',
79 'mediastream/MediaStreamEvent.idl', 82 'mediastream/MediaStreamEvent.idl',
80 'mediastream/MediaStreamTrack.idl', 83 'mediastream/MediaStreamTrack.idl',
81 'mediastream/MediaStreamTrackEvent.idl', 84 'mediastream/MediaStreamTrackEvent.idl',
82 'mediastream/NavigatorMediaStream.idl', 85 'mediastream/NavigatorMediaStream.idl',
83 'mediastream/NavigatorUserMediaError.idl', 86 'mediastream/NavigatorUserMediaError.idl',
84 'mediastream/NavigatorUserMediaErrorCallback.idl', 87 'mediastream/NavigatorUserMediaErrorCallback.idl',
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 'indexeddb/IDBTransaction.h', 339 'indexeddb/IDBTransaction.h',
337 'indexeddb/IDBVersionChangeEvent.cpp', 340 'indexeddb/IDBVersionChangeEvent.cpp',
338 'indexeddb/IDBVersionChangeEvent.h', 341 'indexeddb/IDBVersionChangeEvent.h',
339 'indexeddb/IndexedDB.h', 342 'indexeddb/IndexedDB.h',
340 'indexeddb/PageGroupIndexedDatabase.cpp', 343 'indexeddb/PageGroupIndexedDatabase.cpp',
341 'indexeddb/PageGroupIndexedDatabase.h', 344 'indexeddb/PageGroupIndexedDatabase.h',
342 'indexeddb/WorkerContextIndexedDatabase.cpp', 345 'indexeddb/WorkerContextIndexedDatabase.cpp',
343 'indexeddb/WorkerContextIndexedDatabase.h', 346 'indexeddb/WorkerContextIndexedDatabase.h',
344 'indexeddb/chromium/IDBFactoryBackendInterfaceChromium.cpp', 347 'indexeddb/chromium/IDBFactoryBackendInterfaceChromium.cpp',
345 'indexeddb/chromium/IDBFactoryBackendInterfaceChromium.h', 348 'indexeddb/chromium/IDBFactoryBackendInterfaceChromium.h',
349 'mediasource/MediaSource.cpp',
350 'mediasource/MediaSource.h',
346 'mediasource/MediaSourceBase.cpp', 351 'mediasource/MediaSourceBase.cpp',
347 'mediasource/MediaSourceBase.h', 352 'mediasource/MediaSourceBase.h',
348 'mediasource/MediaSourceRegistry.cpp', 353 'mediasource/MediaSourceRegistry.cpp',
349 'mediasource/MediaSourceRegistry.h', 354 'mediasource/MediaSourceRegistry.h',
355 'mediasource/SourceBuffer.cpp',
356 'mediasource/SourceBuffer.h',
357 'mediasource/SourceBufferList.cpp',
358 'mediasource/SourceBufferList.h',
350 'mediasource/WebKitMediaSource.cpp', 359 'mediasource/WebKitMediaSource.cpp',
351 'mediasource/WebKitMediaSource.h', 360 'mediasource/WebKitMediaSource.h',
352 'mediasource/WebKitSourceBuffer.cpp', 361 'mediasource/WebKitSourceBuffer.cpp',
353 'mediasource/WebKitSourceBuffer.h', 362 'mediasource/WebKitSourceBuffer.h',
354 'mediasource/WebKitSourceBufferList.cpp', 363 'mediasource/WebKitSourceBufferList.cpp',
355 'mediasource/WebKitSourceBufferList.h', 364 'mediasource/WebKitSourceBufferList.h',
356 'mediastream/MediaConstraintsImpl.cpp', 365 'mediastream/MediaConstraintsImpl.cpp',
357 'mediastream/MediaConstraintsImpl.h', 366 'mediastream/MediaConstraintsImpl.h',
358 'mediastream/MediaStream.cpp', 367 'mediastream/MediaStream.cpp',
359 'mediastream/MediaStream.h', 368 'mediastream/MediaStream.h',
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 'websockets/WorkerThreadableWebSocketChannel.cpp', 678 'websockets/WorkerThreadableWebSocketChannel.cpp',
670 'websockets/WorkerThreadableWebSocketChannel.h', 679 'websockets/WorkerThreadableWebSocketChannel.h',
671 ], 680 ],
672 'modules_unittest_files': [ 681 'modules_unittest_files': [
673 'websockets/WebSocketDeflaterTest.cpp', 682 'websockets/WebSocketDeflaterTest.cpp',
674 'websockets/WebSocketExtensionDispatcherTest.cpp', 683 'websockets/WebSocketExtensionDispatcherTest.cpp',
675 'websockets/WebSocketPerMessageDeflateTest.cpp', 684 'websockets/WebSocketPerMessageDeflateTest.cpp',
676 ], 685 ],
677 }, 686 },
678 } 687 }
OLDNEW
« no previous file with comments | « Source/modules/mediasource/SourceBufferList.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698