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

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

Issue 212643010: Add Dispatcher class to the Battery Status API module. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 'screen_orientation/ScreenOrientation.idl', 219 'screen_orientation/ScreenOrientation.idl',
220 'serviceworkers/NavigatorServiceWorker.idl', 220 'serviceworkers/NavigatorServiceWorker.idl',
221 'speech/WindowSpeechSynthesis.idl', 221 'speech/WindowSpeechSynthesis.idl',
222 'vibration/NavigatorVibration.idl', 222 'vibration/NavigatorVibration.idl',
223 'webdatabase/WindowWebDatabase.idl', 223 'webdatabase/WindowWebDatabase.idl',
224 'webdatabase/WorkerGlobalScopeWebDatabase.idl', 224 'webdatabase/WorkerGlobalScopeWebDatabase.idl',
225 'webmidi/NavigatorWebMIDI.idl', 225 'webmidi/NavigatorWebMIDI.idl',
226 ], 226 ],
227 'modules_files': [ 227 'modules_files': [
228 '<@(extra_blink_module_files)', 228 '<@(extra_blink_module_files)',
229 'battery/BatteryDispatcher.cpp',
230 'battery/BatteryDispatcher.h',
229 'battery/BatteryManager.cpp', 231 'battery/BatteryManager.cpp',
230 'battery/BatteryManager.h', 232 'battery/BatteryManager.h',
231 'battery/BatteryStatus.cpp', 233 'battery/BatteryStatus.cpp',
232 'battery/BatteryStatus.h', 234 'battery/BatteryStatus.h',
233 'battery/NavigatorBattery.cpp', 235 'battery/NavigatorBattery.cpp',
234 'battery/NavigatorBattery.h', 236 'battery/NavigatorBattery.h',
235 'crypto/Crypto.cpp', 237 'crypto/Crypto.cpp',
236 'crypto/Crypto.h', 238 'crypto/Crypto.h',
237 'crypto/CryptoResultImpl.cpp', 239 'crypto/CryptoResultImpl.cpp',
238 'crypto/CryptoResultImpl.h', 240 'crypto/CryptoResultImpl.h',
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
881 'indexeddb/IDBKeyPathTest.cpp', 883 'indexeddb/IDBKeyPathTest.cpp',
882 'indexeddb/IDBRequestTest.cpp', 884 'indexeddb/IDBRequestTest.cpp',
883 'indexeddb/IDBTransactionTest.cpp', 885 'indexeddb/IDBTransactionTest.cpp',
884 'websockets/WebSocketDeflaterTest.cpp', 886 'websockets/WebSocketDeflaterTest.cpp',
885 'websockets/WebSocketExtensionDispatcherTest.cpp', 887 'websockets/WebSocketExtensionDispatcherTest.cpp',
886 'websockets/WebSocketExtensionParserTest.cpp', 888 'websockets/WebSocketExtensionParserTest.cpp',
887 'websockets/WebSocketPerMessageDeflateTest.cpp', 889 'websockets/WebSocketPerMessageDeflateTest.cpp',
888 ], 890 ],
889 }, 891 },
890 } 892 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698