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

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

Issue 695643002: Add terminateServiceWorker method for layout tests - blink side (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: address comments Created 6 years, 1 month 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
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 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after
1082 'websockets/WebSocketChannelClient.h', 1082 'websockets/WebSocketChannelClient.h',
1083 'websockets/WebSocketFrame.cpp', 1083 'websockets/WebSocketFrame.cpp',
1084 'websockets/WebSocketFrame.h', 1084 'websockets/WebSocketFrame.h',
1085 'websockets/WorkerWebSocketChannel.cpp', 1085 'websockets/WorkerWebSocketChannel.cpp',
1086 'websockets/WorkerWebSocketChannel.h', 1086 'websockets/WorkerWebSocketChannel.h',
1087 ], 1087 ],
1088 # 'partial interface' or target (right side of) 'implements' 1088 # 'partial interface' or target (right side of) 'implements'
1089 'modules_testing_dependency_idl_files' : [ 1089 'modules_testing_dependency_idl_files' : [
1090 'geolocation/testing/InternalsGeolocation.idl', 1090 'geolocation/testing/InternalsGeolocation.idl',
1091 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl', 1091 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl',
1092 'serviceworkers/testing/InternalsServiceWorker.idl',
1092 'speech/testing/InternalsSpeechSynthesis.idl', 1093 'speech/testing/InternalsSpeechSynthesis.idl',
1093 'vibration/testing/InternalsVibration.idl', 1094 'vibration/testing/InternalsVibration.idl',
1094 ], 1095 ],
1095 'modules_testing_files': [ 1096 'modules_testing_files': [
1096 'geolocation/testing/GeolocationClientMock.cpp', 1097 'geolocation/testing/GeolocationClientMock.cpp',
1097 'geolocation/testing/GeolocationClientMock.h', 1098 'geolocation/testing/GeolocationClientMock.h',
1098 'geolocation/testing/InternalsGeolocation.cpp', 1099 'geolocation/testing/InternalsGeolocation.cpp',
1099 'geolocation/testing/InternalsGeolocation.h', 1100 'geolocation/testing/InternalsGeolocation.h',
1100 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.cpp', 1101 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.cpp',
1101 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.h', 1102 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.h',
1102 'navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp', 1103 'navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp',
1103 'navigatorcontentutils/testing/NavigatorContentUtilsClientMock.h', 1104 'navigatorcontentutils/testing/NavigatorContentUtilsClientMock.h',
1105 'serviceworkers/testing/InternalsServiceWorker.cpp',
1106 'serviceworkers/testing/InternalsServiceWorker.h',
1104 'speech/testing/InternalsSpeechSynthesis.cpp', 1107 'speech/testing/InternalsSpeechSynthesis.cpp',
1105 'speech/testing/InternalsSpeechSynthesis.h', 1108 'speech/testing/InternalsSpeechSynthesis.h',
1106 'speech/testing/PlatformSpeechSynthesizerMock.cpp', 1109 'speech/testing/PlatformSpeechSynthesizerMock.cpp',
1107 'speech/testing/PlatformSpeechSynthesizerMock.h', 1110 'speech/testing/PlatformSpeechSynthesizerMock.h',
1108 'vibration/testing/InternalsVibration.cpp', 1111 'vibration/testing/InternalsVibration.cpp',
1109 'vibration/testing/InternalsVibration.h', 1112 'vibration/testing/InternalsVibration.h',
1110 ], 1113 ],
1111 'modules_unittest_files': [ 1114 'modules_unittest_files': [
1112 'filesystem/DOMFileSystemBaseTest.cpp', 1115 'filesystem/DOMFileSystemBaseTest.cpp',
1113 'indexeddb/IDBKeyPathTest.cpp', 1116 'indexeddb/IDBKeyPathTest.cpp',
1114 'indexeddb/IDBRequestTest.cpp', 1117 'indexeddb/IDBRequestTest.cpp',
1115 'indexeddb/IDBTransactionTest.cpp', 1118 'indexeddb/IDBTransactionTest.cpp',
1116 'serviceworkers/CacheTest.cpp', 1119 'serviceworkers/CacheTest.cpp',
1117 'serviceworkers/FetchResponseDataTest.cpp', 1120 'serviceworkers/FetchResponseDataTest.cpp',
1118 'serviceworkers/RequestTest.cpp', 1121 'serviceworkers/RequestTest.cpp',
1119 'serviceworkers/ResponseTest.cpp', 1122 'serviceworkers/ResponseTest.cpp',
1120 'serviceworkers/ServiceWorkerContainerTest.cpp', 1123 'serviceworkers/ServiceWorkerContainerTest.cpp',
1121 'websockets/DOMWebSocketTest.cpp', 1124 'websockets/DOMWebSocketTest.cpp',
1122 'websockets/DocumentWebSocketChannelTest.cpp', 1125 'websockets/DocumentWebSocketChannelTest.cpp',
1123 ], 1126 ],
1124 }, 1127 },
1125 } 1128 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698