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

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

Issue 182613002: Add support to Battery Status API in blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add NeedsRebaseline for 4 tests for Mac. 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
11 'modules_idl_files': [ 11 'modules_idl_files': [
12 '<@(extra_blink_module_idl_files)', 12 '<@(extra_blink_module_idl_files)',
13 'battery/BatteryManager.idl',
13 'crypto/AesKeyAlgorithm.idl', 14 'crypto/AesKeyAlgorithm.idl',
14 'crypto/Crypto.idl', 15 'crypto/Crypto.idl',
15 'crypto/HmacKeyAlgorithm.idl', 16 'crypto/HmacKeyAlgorithm.idl',
16 'crypto/Key.idl', 17 'crypto/Key.idl',
17 'crypto/KeyAlgorithm.idl', 18 'crypto/KeyAlgorithm.idl',
18 'crypto/KeyPair.idl', 19 'crypto/KeyPair.idl',
19 'crypto/RsaHashedKeyAlgorithm.idl', 20 'crypto/RsaHashedKeyAlgorithm.idl',
20 'crypto/RsaKeyAlgorithm.idl', 21 'crypto/RsaKeyAlgorithm.idl',
21 'crypto/SubtleCrypto.idl', 22 'crypto/SubtleCrypto.idl',
22 'crypto/WorkerCrypto.idl', 23 'crypto/WorkerCrypto.idl',
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 'webmidi/MIDIInput.idl', 179 'webmidi/MIDIInput.idl',
179 'webmidi/MIDIMessageEvent.idl', 180 'webmidi/MIDIMessageEvent.idl',
180 'webmidi/MIDIOutput.idl', 181 'webmidi/MIDIOutput.idl',
181 'webmidi/MIDIPort.idl', 182 'webmidi/MIDIPort.idl',
182 'webmidi/MIDISuccessCallback.idl', 183 'webmidi/MIDISuccessCallback.idl',
183 'websockets/CloseEvent.idl', 184 'websockets/CloseEvent.idl',
184 'websockets/WebSocket.idl', 185 'websockets/WebSocket.idl',
185 ], 186 ],
186 # 'partial interface' or target (right side of) 'implements' 187 # 'partial interface' or target (right side of) 'implements'
187 'modules_dependency_idl_files': [ 188 'modules_dependency_idl_files': [
189 'battery/NavigatorBattery.idl',
188 'crypto/WindowCrypto.idl', 190 'crypto/WindowCrypto.idl',
189 'crypto/WorkerGlobalScopeCrypto.idl', 191 'crypto/WorkerGlobalScopeCrypto.idl',
190 'donottrack/NavigatorDoNotTrack.idl', 192 'donottrack/NavigatorDoNotTrack.idl',
191 'filesystem/DataTransferItemFileSystem.idl', 193 'filesystem/DataTransferItemFileSystem.idl',
192 'filesystem/HTMLInputElementFileSystem.idl', 194 'filesystem/HTMLInputElementFileSystem.idl',
193 'filesystem/InspectorFrontendHostFileSystem.idl', 195 'filesystem/InspectorFrontendHostFileSystem.idl',
194 'filesystem/WindowFileSystem.idl', 196 'filesystem/WindowFileSystem.idl',
195 'filesystem/WorkerGlobalScopeFileSystem.idl', 197 'filesystem/WorkerGlobalScopeFileSystem.idl',
196 'gamepad/NavigatorGamepad.idl', 198 'gamepad/NavigatorGamepad.idl',
197 'geolocation/NavigatorGeolocation.idl', 199 'geolocation/NavigatorGeolocation.idl',
(...skipping 17 matching lines...) Expand all
215 'screen_orientation/ScreenOrientation.idl', 217 'screen_orientation/ScreenOrientation.idl',
216 'serviceworkers/NavigatorServiceWorker.idl', 218 'serviceworkers/NavigatorServiceWorker.idl',
217 'speech/WindowSpeechSynthesis.idl', 219 'speech/WindowSpeechSynthesis.idl',
218 'vibration/NavigatorVibration.idl', 220 'vibration/NavigatorVibration.idl',
219 'webdatabase/WindowWebDatabase.idl', 221 'webdatabase/WindowWebDatabase.idl',
220 'webdatabase/WorkerGlobalScopeWebDatabase.idl', 222 'webdatabase/WorkerGlobalScopeWebDatabase.idl',
221 'webmidi/NavigatorWebMIDI.idl', 223 'webmidi/NavigatorWebMIDI.idl',
222 ], 224 ],
223 'modules_files': [ 225 'modules_files': [
224 '<@(extra_blink_module_files)', 226 '<@(extra_blink_module_files)',
227 'battery/BatteryManager.cpp',
228 'battery/BatteryManager.h',
229 'battery/BatteryStatus.cpp',
230 'battery/BatteryStatus.h',
231 'battery/NavigatorBattery.cpp',
232 'battery/NavigatorBattery.h',
225 'crypto/Crypto.cpp', 233 'crypto/Crypto.cpp',
226 'crypto/Crypto.h', 234 'crypto/Crypto.h',
227 'crypto/CryptoResultImpl.cpp', 235 'crypto/CryptoResultImpl.cpp',
228 'crypto/CryptoResultImpl.h', 236 'crypto/CryptoResultImpl.h',
229 'crypto/DOMWindowCrypto.cpp', 237 'crypto/DOMWindowCrypto.cpp',
230 'crypto/DOMWindowCrypto.h', 238 'crypto/DOMWindowCrypto.h',
231 'crypto/Key.cpp', 239 'crypto/Key.cpp',
232 'crypto/AesKeyAlgorithm.cpp', 240 'crypto/AesKeyAlgorithm.cpp',
233 'crypto/AesKeyAlgorithm.h', 241 'crypto/AesKeyAlgorithm.h',
234 'crypto/HmacKeyAlgorithm.cpp', 242 'crypto/HmacKeyAlgorithm.cpp',
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 'indexeddb/IDBKeyPathTest.cpp', 876 'indexeddb/IDBKeyPathTest.cpp',
869 'indexeddb/IDBRequestTest.cpp', 877 'indexeddb/IDBRequestTest.cpp',
870 'indexeddb/IDBTransactionTest.cpp', 878 'indexeddb/IDBTransactionTest.cpp',
871 'websockets/WebSocketDeflaterTest.cpp', 879 'websockets/WebSocketDeflaterTest.cpp',
872 'websockets/WebSocketExtensionDispatcherTest.cpp', 880 'websockets/WebSocketExtensionDispatcherTest.cpp',
873 'websockets/WebSocketExtensionParserTest.cpp', 881 'websockets/WebSocketExtensionParserTest.cpp',
874 'websockets/WebSocketPerMessageDeflateTest.cpp', 882 'websockets/WebSocketPerMessageDeflateTest.cpp',
875 ], 883 ],
876 }, 884 },
877 } 885 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698