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

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

Issue 293403002: Introduce mock test system for navigator content utils (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
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 # Files for which bindings (.cpp and .h files) will be generated 10 # Files for which bindings (.cpp and .h files) will be generated
(...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 'websockets/WebSocketHandshake.cpp', 921 'websockets/WebSocketHandshake.cpp',
922 'websockets/WebSocketHandshake.h', 922 'websockets/WebSocketHandshake.h',
923 'websockets/WebSocketPerMessageDeflate.cpp', 923 'websockets/WebSocketPerMessageDeflate.cpp',
924 'websockets/WebSocketPerMessageDeflate.h', 924 'websockets/WebSocketPerMessageDeflate.h',
925 'websockets/WorkerThreadableWebSocketChannel.cpp', 925 'websockets/WorkerThreadableWebSocketChannel.cpp',
926 'websockets/WorkerThreadableWebSocketChannel.h', 926 'websockets/WorkerThreadableWebSocketChannel.h',
927 ], 927 ],
928 # 'partial interface' or target (right side of) 'implements' 928 # 'partial interface' or target (right side of) 'implements'
929 'modules_testing_dependency_idl_files' : [ 929 'modules_testing_dependency_idl_files' : [
930 'geolocation/testing/InternalsGeolocation.idl', 930 'geolocation/testing/InternalsGeolocation.idl',
931 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl',
931 'speech/testing/InternalsSpeechSynthesis.idl', 932 'speech/testing/InternalsSpeechSynthesis.idl',
932 'vibration/testing/InternalsVibration.idl', 933 'vibration/testing/InternalsVibration.idl',
933 ], 934 ],
934 'modules_testing_files': [ 935 'modules_testing_files': [
935 'geolocation/testing/GeolocationClientMock.cpp', 936 'geolocation/testing/GeolocationClientMock.cpp',
936 'geolocation/testing/GeolocationClientMock.h', 937 'geolocation/testing/GeolocationClientMock.h',
937 'geolocation/testing/InternalsGeolocation.cpp', 938 'geolocation/testing/InternalsGeolocation.cpp',
938 'geolocation/testing/InternalsGeolocation.h', 939 'geolocation/testing/InternalsGeolocation.h',
940 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.cpp',
941 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.h',
942 'navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp',
943 'navigatorcontentutils/testing/NavigatorContentUtilsClientMock.h',
939 'speech/testing/InternalsSpeechSynthesis.cpp', 944 'speech/testing/InternalsSpeechSynthesis.cpp',
940 'speech/testing/InternalsSpeechSynthesis.h', 945 'speech/testing/InternalsSpeechSynthesis.h',
941 'speech/testing/PlatformSpeechSynthesizerMock.cpp', 946 'speech/testing/PlatformSpeechSynthesizerMock.cpp',
942 'speech/testing/PlatformSpeechSynthesizerMock.h', 947 'speech/testing/PlatformSpeechSynthesizerMock.h',
943 'vibration/testing/InternalsVibration.cpp', 948 'vibration/testing/InternalsVibration.cpp',
944 'vibration/testing/InternalsVibration.h', 949 'vibration/testing/InternalsVibration.h',
945 ], 950 ],
946 'modules_unittest_files': [ 951 'modules_unittest_files': [
947 'indexeddb/IDBKeyPathTest.cpp', 952 'indexeddb/IDBKeyPathTest.cpp',
948 'indexeddb/IDBRequestTest.cpp', 953 'indexeddb/IDBRequestTest.cpp',
949 'indexeddb/IDBTransactionTest.cpp', 954 'indexeddb/IDBTransactionTest.cpp',
950 'websockets/WebSocketDeflaterTest.cpp', 955 'websockets/WebSocketDeflaterTest.cpp',
951 'websockets/WebSocketExtensionDispatcherTest.cpp', 956 'websockets/WebSocketExtensionDispatcherTest.cpp',
952 'websockets/WebSocketExtensionParserTest.cpp', 957 'websockets/WebSocketExtensionParserTest.cpp',
953 'websockets/WebSocketPerMessageDeflateTest.cpp', 958 'websockets/WebSocketPerMessageDeflateTest.cpp',
954 ], 959 ],
955 }, 960 },
956 } 961 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698