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

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: 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 1001 matching lines...) Expand 10 before | Expand all | Expand 10 after
1012 'websockets/WebSocketChannelClient.h', 1012 'websockets/WebSocketChannelClient.h',
1013 'websockets/WebSocketFrame.cpp', 1013 'websockets/WebSocketFrame.cpp',
1014 'websockets/WebSocketFrame.h', 1014 'websockets/WebSocketFrame.h',
1015 'websockets/WorkerThreadableWebSocketChannel.cpp', 1015 'websockets/WorkerThreadableWebSocketChannel.cpp',
1016 'websockets/WorkerThreadableWebSocketChannel.h', 1016 'websockets/WorkerThreadableWebSocketChannel.h',
1017 ], 1017 ],
1018 # 'partial interface' or target (right side of) 'implements' 1018 # 'partial interface' or target (right side of) 'implements'
1019 'modules_testing_dependency_idl_files' : [ 1019 'modules_testing_dependency_idl_files' : [
1020 'geolocation/testing/InternalsGeolocation.idl', 1020 'geolocation/testing/InternalsGeolocation.idl',
1021 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl', 1021 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl',
1022 'serviceworkers/testing/InternalsServiceWorker.idl',
1022 'speech/testing/InternalsSpeechSynthesis.idl', 1023 'speech/testing/InternalsSpeechSynthesis.idl',
1023 'vibration/testing/InternalsVibration.idl', 1024 'vibration/testing/InternalsVibration.idl',
1024 ], 1025 ],
1025 'modules_testing_files': [ 1026 'modules_testing_files': [
1026 'geolocation/testing/GeolocationClientMock.cpp', 1027 'geolocation/testing/GeolocationClientMock.cpp',
1027 'geolocation/testing/GeolocationClientMock.h', 1028 'geolocation/testing/GeolocationClientMock.h',
1028 'geolocation/testing/InternalsGeolocation.cpp', 1029 'geolocation/testing/InternalsGeolocation.cpp',
1029 'geolocation/testing/InternalsGeolocation.h', 1030 'geolocation/testing/InternalsGeolocation.h',
1030 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.cpp', 1031 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.cpp',
1031 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.h', 1032 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.h',
1032 'navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp', 1033 'navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp',
1033 'navigatorcontentutils/testing/NavigatorContentUtilsClientMock.h', 1034 'navigatorcontentutils/testing/NavigatorContentUtilsClientMock.h',
1035 'serviceworkers/testing/InternalsServiceWorker.cpp',
1036 'serviceworkers/testing/InternalsServiceWorker.h',
1034 'speech/testing/InternalsSpeechSynthesis.cpp', 1037 'speech/testing/InternalsSpeechSynthesis.cpp',
1035 'speech/testing/InternalsSpeechSynthesis.h', 1038 'speech/testing/InternalsSpeechSynthesis.h',
1036 'speech/testing/PlatformSpeechSynthesizerMock.cpp', 1039 'speech/testing/PlatformSpeechSynthesizerMock.cpp',
1037 'speech/testing/PlatformSpeechSynthesizerMock.h', 1040 'speech/testing/PlatformSpeechSynthesizerMock.h',
1038 'vibration/testing/InternalsVibration.cpp', 1041 'vibration/testing/InternalsVibration.cpp',
1039 'vibration/testing/InternalsVibration.h', 1042 'vibration/testing/InternalsVibration.h',
1040 ], 1043 ],
1041 'modules_unittest_files': [ 1044 'modules_unittest_files': [
1042 'filesystem/DOMFileSystemBaseTest.cpp', 1045 'filesystem/DOMFileSystemBaseTest.cpp',
1043 'indexeddb/IDBKeyPathTest.cpp', 1046 'indexeddb/IDBKeyPathTest.cpp',
1044 'indexeddb/IDBRequestTest.cpp', 1047 'indexeddb/IDBRequestTest.cpp',
1045 'indexeddb/IDBTransactionTest.cpp', 1048 'indexeddb/IDBTransactionTest.cpp',
1046 'serviceworkers/CacheTest.cpp', 1049 'serviceworkers/CacheTest.cpp',
1047 'serviceworkers/FetchResponseDataTest.cpp', 1050 'serviceworkers/FetchResponseDataTest.cpp',
1048 'serviceworkers/RequestTest.cpp', 1051 'serviceworkers/RequestTest.cpp',
1049 'serviceworkers/ResponseTest.cpp', 1052 'serviceworkers/ResponseTest.cpp',
1050 'serviceworkers/ServiceWorkerContainerTest.cpp', 1053 'serviceworkers/ServiceWorkerContainerTest.cpp',
1051 'websockets/DOMWebSocketTest.cpp', 1054 'websockets/DOMWebSocketTest.cpp',
1052 'websockets/NewWebSocketChannelImplTest.cpp', 1055 'websockets/NewWebSocketChannelImplTest.cpp',
1053 ], 1056 ],
1054 }, 1057 },
1055 } 1058 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698