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

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

Issue 14192043: Web MIDI: implement MIDIMessageEvent (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: OWNERS Created 7 years, 8 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/core/dom/EventNames.in ('k') | Source/modules/webmidi/MIDIMessageEvent.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 'modules_include_dirs': [ 3 'modules_include_dirs': [
4 'battery', 4 'battery',
5 'donottrack', 5 'donottrack',
6 'filesystem', 6 'filesystem',
7 'gamepad', 7 'gamepad',
8 'geolocation', 8 'geolocation',
9 'indexeddb', 9 'indexeddb',
10 'indexeddb/chromium', 10 'indexeddb/chromium',
11 'mediasource', 11 'mediasource',
12 'mediastream', 12 'mediastream',
13 'navigatorcontentutils', 13 'navigatorcontentutils',
14 'notifications', 14 'notifications',
15 'quota', 15 'quota',
16 'speech', 16 'speech',
17 'webaudio', 17 'webaudio',
18 'webdatabase', 18 'webdatabase',
19 'webdatabase/chromium', 19 'webdatabase/chromium',
20 'webmidi',
20 'websockets', 21 'websockets',
21 ], 22 ],
22 'modules_idl_files': [ 23 'modules_idl_files': [
23 'battery/BatteryManager.idl', 24 'battery/BatteryManager.idl',
24 'battery/NavigatorBattery.idl', 25 'battery/NavigatorBattery.idl',
25 'donottrack/NavigatorDoNotTrack.idl', 26 'donottrack/NavigatorDoNotTrack.idl',
26 'filesystem/DOMFileSystem.idl', 27 'filesystem/DOMFileSystem.idl',
27 'filesystem/DOMFileSystemSync.idl', 28 'filesystem/DOMFileSystemSync.idl',
28 'filesystem/DOMWindowFileSystem.idl', 29 'filesystem/DOMWindowFileSystem.idl',
29 'filesystem/DataTransferItemFileSystem.idl', 30 'filesystem/DataTransferItemFileSystem.idl',
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 'webdatabase/SQLResultSet.idl', 166 'webdatabase/SQLResultSet.idl',
166 'webdatabase/SQLResultSetRowList.idl', 167 'webdatabase/SQLResultSetRowList.idl',
167 'webdatabase/SQLStatementCallback.idl', 168 'webdatabase/SQLStatementCallback.idl',
168 'webdatabase/SQLStatementErrorCallback.idl', 169 'webdatabase/SQLStatementErrorCallback.idl',
169 'webdatabase/SQLTransaction.idl', 170 'webdatabase/SQLTransaction.idl',
170 'webdatabase/SQLTransactionCallback.idl', 171 'webdatabase/SQLTransactionCallback.idl',
171 'webdatabase/SQLTransactionErrorCallback.idl', 172 'webdatabase/SQLTransactionErrorCallback.idl',
172 'webdatabase/SQLTransactionSync.idl', 173 'webdatabase/SQLTransactionSync.idl',
173 'webdatabase/SQLTransactionSyncCallback.idl', 174 'webdatabase/SQLTransactionSyncCallback.idl',
174 'webdatabase/WorkerContextWebDatabase.idl', 175 'webdatabase/WorkerContextWebDatabase.idl',
176 'webmidi/DOMWindowWebMIDI.idl',
tkent 2013/04/23 06:15:58 There is no DOMWindowMIDI.idl in the patch.
Takashi Toyoshima 2013/04/23 06:22:53 Sorry, I missed to include it after renaming. I la
177 'webmidi/MIDIMessageEvent.idl',
175 'websockets/CloseEvent.idl', 178 'websockets/CloseEvent.idl',
176 'websockets/DOMWindowWebSocket.idl', 179 'websockets/DOMWindowWebSocket.idl',
177 'websockets/WebSocket.idl', 180 'websockets/WebSocket.idl',
178 'websockets/WorkerContextWebSocket.idl', 181 'websockets/WorkerContextWebSocket.idl',
179 ], 182 ],
180 'modules_files': [ 183 'modules_files': [
181 'battery/BatteryClient.h', 184 'battery/BatteryClient.h',
182 'battery/BatteryController.cpp', 185 'battery/BatteryController.cpp',
183 'battery/BatteryController.h', 186 'battery/BatteryController.h',
184 'battery/BatteryManager.cpp', 187 'battery/BatteryManager.cpp',
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 'webdatabase/SQLTransactionSync.cpp', 604 'webdatabase/SQLTransactionSync.cpp',
602 'webdatabase/SQLTransactionSync.h', 605 'webdatabase/SQLTransactionSync.h',
603 'webdatabase/SQLTransactionSyncCallback.h', 606 'webdatabase/SQLTransactionSyncCallback.h',
604 'webdatabase/WorkerContextWebDatabase.cpp', 607 'webdatabase/WorkerContextWebDatabase.cpp',
605 'webdatabase/WorkerContextWebDatabase.h', 608 'webdatabase/WorkerContextWebDatabase.h',
606 'webdatabase/chromium/DatabaseObserver.h', 609 'webdatabase/chromium/DatabaseObserver.h',
607 'webdatabase/chromium/DatabaseTrackerChromium.cpp', 610 'webdatabase/chromium/DatabaseTrackerChromium.cpp',
608 'webdatabase/chromium/QuotaTracker.cpp', 611 'webdatabase/chromium/QuotaTracker.cpp',
609 'webdatabase/chromium/QuotaTracker.h', 612 'webdatabase/chromium/QuotaTracker.h',
610 'webdatabase/chromium/SQLTransactionClientChromium.cpp', 613 'webdatabase/chromium/SQLTransactionClientChromium.cpp',
614 'webmidi/MIDIMessageEvent.h',
611 'websockets/CloseEvent.h', 615 'websockets/CloseEvent.h',
612 'websockets/MainThreadWebSocketChannel.cpp', 616 'websockets/MainThreadWebSocketChannel.cpp',
613 'websockets/MainThreadWebSocketChannel.h', 617 'websockets/MainThreadWebSocketChannel.h',
614 'websockets/ThreadableWebSocketChannelClientWrapper.cpp', 618 'websockets/ThreadableWebSocketChannelClientWrapper.cpp',
615 'websockets/ThreadableWebSocketChannelClientWrapper.h', 619 'websockets/ThreadableWebSocketChannelClientWrapper.h',
616 'websockets/WebSocket.cpp', 620 'websockets/WebSocket.cpp',
617 'websockets/WebSocket.h', 621 'websockets/WebSocket.h',
618 'websockets/WebSocketChannel.cpp', 622 'websockets/WebSocketChannel.cpp',
619 'websockets/WebSocketChannel.h', 623 'websockets/WebSocketChannel.h',
620 'websockets/WebSocketChannelClient.h', 624 'websockets/WebSocketChannelClient.h',
(...skipping 12 matching lines...) Expand all
633 'websockets/WebSocketHandshake.h', 637 'websockets/WebSocketHandshake.h',
634 'websockets/WebSocketHandshakeRequest.cpp', 638 'websockets/WebSocketHandshakeRequest.cpp',
635 'websockets/WebSocketHandshakeRequest.h', 639 'websockets/WebSocketHandshakeRequest.h',
636 'websockets/WebSocketHandshakeResponse.cpp', 640 'websockets/WebSocketHandshakeResponse.cpp',
637 'websockets/WebSocketHandshakeResponse.h', 641 'websockets/WebSocketHandshakeResponse.h',
638 'websockets/WorkerThreadableWebSocketChannel.cpp', 642 'websockets/WorkerThreadableWebSocketChannel.cpp',
639 'websockets/WorkerThreadableWebSocketChannel.h', 643 'websockets/WorkerThreadableWebSocketChannel.h',
640 ], 644 ],
641 }, 645 },
642 } 646 }
OLDNEW
« no previous file with comments | « Source/core/dom/EventNames.in ('k') | Source/modules/webmidi/MIDIMessageEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698