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

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

Issue 639333003: Delete the old WebSocket implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | Source/modules/websockets/MainThreadWebSocketChannel.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 'includes': [ 2 'includes': [
3 '../core/core_generated.gypi', 3 '../core/core_generated.gypi',
4 'modules_generated.gypi', 4 'modules_generated.gypi',
5 ], 5 ],
6 'variables': { 6 'variables': {
7 # Experimental hooks for embedder to provide extra IDL and source files. 7 # Experimental hooks for embedder to provide extra IDL and source files.
8 # 8 #
9 # Note: this is not a supported API. If you rely on this, you will be broken 9 # Note: this is not a supported API. If you rely on this, you will be broken
10 # from time to time as the code generator changes in backward incompatible 10 # from time to time as the code generator changes in backward incompatible
(...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after
988 'webmidi/MIDIOutputMap.cpp', 988 'webmidi/MIDIOutputMap.cpp',
989 'webmidi/MIDIOutputMap.h', 989 'webmidi/MIDIOutputMap.h',
990 'webmidi/MIDIPort.cpp', 990 'webmidi/MIDIPort.cpp',
991 'webmidi/MIDIPort.h', 991 'webmidi/MIDIPort.h',
992 'webmidi/MIDISuccessCallback.h', 992 'webmidi/MIDISuccessCallback.h',
993 'webmidi/NavigatorWebMIDI.cpp', 993 'webmidi/NavigatorWebMIDI.cpp',
994 'webmidi/NavigatorWebMIDI.h', 994 'webmidi/NavigatorWebMIDI.h',
995 'websockets/CloseEvent.h', 995 'websockets/CloseEvent.h',
996 'websockets/DOMWebSocket.cpp', 996 'websockets/DOMWebSocket.cpp',
997 'websockets/DOMWebSocket.h', 997 'websockets/DOMWebSocket.h',
998 'websockets/MainThreadWebSocketChannel.cpp',
999 'websockets/MainThreadWebSocketChannel.h',
1000 'websockets/NewWebSocketChannelImpl.cpp', 998 'websockets/NewWebSocketChannelImpl.cpp',
1001 'websockets/NewWebSocketChannelImpl.h', 999 'websockets/NewWebSocketChannelImpl.h',
1002 'websockets/WebSocketChannel.cpp', 1000 'websockets/WebSocketChannel.cpp',
1003 'websockets/WebSocketChannel.h', 1001 'websockets/WebSocketChannel.h',
1004 'websockets/WebSocketChannelClient.h', 1002 'websockets/WebSocketChannelClient.h',
1005 'websockets/WebSocketDeflateFramer.cpp',
1006 'websockets/WebSocketDeflateFramer.h',
1007 'websockets/WebSocketDeflater.cpp',
1008 'websockets/WebSocketDeflater.h',
1009 'websockets/WebSocketExtensionDispatcher.cpp',
1010 'websockets/WebSocketExtensionDispatcher.h',
1011 'websockets/WebSocketExtensionParser.cpp',
1012 'websockets/WebSocketExtensionParser.h',
1013 'websockets/WebSocketExtensionProcessor.h',
1014 'websockets/WebSocketFrame.cpp', 1003 'websockets/WebSocketFrame.cpp',
1015 'websockets/WebSocketFrame.h', 1004 'websockets/WebSocketFrame.h',
1016 'websockets/WebSocketHandshake.cpp',
1017 'websockets/WebSocketHandshake.h',
1018 'websockets/WebSocketPerMessageDeflate.cpp',
1019 'websockets/WebSocketPerMessageDeflate.h',
1020 'websockets/WorkerThreadableWebSocketChannel.cpp', 1005 'websockets/WorkerThreadableWebSocketChannel.cpp',
1021 'websockets/WorkerThreadableWebSocketChannel.h', 1006 'websockets/WorkerThreadableWebSocketChannel.h',
1022 ], 1007 ],
1023 # 'partial interface' or target (right side of) 'implements' 1008 # 'partial interface' or target (right side of) 'implements'
1024 'modules_testing_dependency_idl_files' : [ 1009 'modules_testing_dependency_idl_files' : [
1025 'geolocation/testing/InternalsGeolocation.idl', 1010 'geolocation/testing/InternalsGeolocation.idl',
1026 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl', 1011 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl',
1027 'speech/testing/InternalsSpeechSynthesis.idl', 1012 'speech/testing/InternalsSpeechSynthesis.idl',
1028 'vibration/testing/InternalsVibration.idl', 1013 'vibration/testing/InternalsVibration.idl',
1029 ], 1014 ],
(...skipping 18 matching lines...) Expand all
1048 'indexeddb/IDBKeyPathTest.cpp', 1033 'indexeddb/IDBKeyPathTest.cpp',
1049 'indexeddb/IDBRequestTest.cpp', 1034 'indexeddb/IDBRequestTest.cpp',
1050 'indexeddb/IDBTransactionTest.cpp', 1035 'indexeddb/IDBTransactionTest.cpp',
1051 'serviceworkers/CacheTest.cpp', 1036 'serviceworkers/CacheTest.cpp',
1052 'serviceworkers/FetchResponseDataTest.cpp', 1037 'serviceworkers/FetchResponseDataTest.cpp',
1053 'serviceworkers/RequestTest.cpp', 1038 'serviceworkers/RequestTest.cpp',
1054 'serviceworkers/ResponseTest.cpp', 1039 'serviceworkers/ResponseTest.cpp',
1055 'serviceworkers/ServiceWorkerContainerTest.cpp', 1040 'serviceworkers/ServiceWorkerContainerTest.cpp',
1056 'websockets/DOMWebSocketTest.cpp', 1041 'websockets/DOMWebSocketTest.cpp',
1057 'websockets/NewWebSocketChannelImplTest.cpp', 1042 'websockets/NewWebSocketChannelImplTest.cpp',
1058 'websockets/WebSocketDeflaterTest.cpp',
1059 'websockets/WebSocketExtensionDispatcherTest.cpp',
1060 'websockets/WebSocketExtensionParserTest.cpp',
1061 'websockets/WebSocketPerMessageDeflateTest.cpp',
1062 ], 1043 ],
1063 }, 1044 },
1064 } 1045 }
OLDNEW
« no previous file with comments | « no previous file | Source/modules/websockets/MainThreadWebSocketChannel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698