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

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

Issue 1084923002: Wake Lock API implementation (Blink part) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Applied review comments Created 5 years, 7 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 'includes': [ 2 'includes': [
3 'core_generated.gypi', 3 'core_generated.gypi',
4 ], 4 ],
5 'variables': { 5 'variables': {
6 # Files for which bindings (.cpp and .h files) will be generated 6 # Files for which bindings (.cpp and .h files) will be generated
7 'core_idl_files': [ 7 'core_idl_files': [
8 'animation/Animation.idl', 8 'animation/Animation.idl',
9 'animation/AnimationEffect.idl', 9 'animation/AnimationEffect.idl',
10 'animation/AnimationNode.idl', 10 'animation/AnimationNode.idl',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'dom/DOMMatrixReadOnly.idl', 54 'dom/DOMMatrixReadOnly.idl',
55 'dom/DOMPoint.idl', 55 'dom/DOMPoint.idl',
56 'dom/DOMPointReadOnly.idl', 56 'dom/DOMPointReadOnly.idl',
57 'dom/DOMRect.idl', 57 'dom/DOMRect.idl',
58 'dom/DOMRectReadOnly.idl', 58 'dom/DOMRectReadOnly.idl',
59 'dom/DOMSettableTokenList.idl', 59 'dom/DOMSettableTokenList.idl',
60 'dom/DOMStringList.idl', 60 'dom/DOMStringList.idl',
61 'dom/DOMStringMap.idl', 61 'dom/DOMStringMap.idl',
62 'dom/DOMTokenList.idl', 62 'dom/DOMTokenList.idl',
63 'dom/DataView.idl', 63 'dom/DataView.idl',
64 'dom/Document.idl',
65 'dom/DocumentFragment.idl', 64 'dom/DocumentFragment.idl',
66 'dom/DocumentType.idl', 65 'dom/DocumentType.idl',
67 'dom/Element.idl', 66 'dom/Element.idl',
68 'dom/Float32Array.idl', 67 'dom/Float32Array.idl',
69 'dom/Float64Array.idl', 68 'dom/Float64Array.idl',
70 'dom/Int16Array.idl', 69 'dom/Int16Array.idl',
71 'dom/Int32Array.idl', 70 'dom/Int32Array.idl',
72 'dom/Int8Array.idl', 71 'dom/Int8Array.idl',
73 'dom/Iterator.idl', 72 'dom/Iterator.idl',
74 'dom/MessageChannel.idl', 73 'dom/MessageChannel.idl',
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 'xml/XPathResult.idl', 434 'xml/XPathResult.idl',
436 'xml/XSLTProcessor.idl', 435 'xml/XSLTProcessor.idl',
437 'xmlhttprequest/XMLHttpRequest.idl', 436 'xmlhttprequest/XMLHttpRequest.idl',
438 'xmlhttprequest/XMLHttpRequestEventTarget.idl', 437 'xmlhttprequest/XMLHttpRequestEventTarget.idl',
439 'xmlhttprequest/XMLHttpRequestProgressEvent.idl', 438 'xmlhttprequest/XMLHttpRequestProgressEvent.idl',
440 'xmlhttprequest/XMLHttpRequestUpload.idl', 439 'xmlhttprequest/XMLHttpRequestUpload.idl',
441 ], 440 ],
442 # core IDL files that have partial interfaces in modules. 441 # core IDL files that have partial interfaces in modules.
443 'core_idl_with_modules_dependency_files': [ 442 'core_idl_with_modules_dependency_files': [
444 'clipboard/DataTransferItem.idl', 443 'clipboard/DataTransferItem.idl',
444 'dom/Document.idl',
445 'dom/URL.idl', 445 'dom/URL.idl',
446 'frame/Navigator.idl', 446 'frame/Navigator.idl',
447 'frame/Screen.idl', 447 'frame/Screen.idl',
448 'frame/Window.idl', 448 'frame/Window.idl',
449 'html/HTMLInputElement.idl', 449 'html/HTMLInputElement.idl',
450 'html/HTMLMediaElement.idl', 450 'html/HTMLMediaElement.idl',
451 'html/HTMLVideoElement.idl', 451 'html/HTMLVideoElement.idl',
452 'inspector/DevToolsHost.idl', 452 'inspector/DevToolsHost.idl',
453 'workers/DedicatedWorkerGlobalScope.idl', 453 'workers/DedicatedWorkerGlobalScope.idl',
454 'workers/SharedWorker.idl', 454 'workers/SharedWorker.idl',
(...skipping 3351 matching lines...) Expand 10 before | Expand all | Expand 10 after
3806 'paint/LayoutObjectDrawingRecorderTest.cpp', 3806 'paint/LayoutObjectDrawingRecorderTest.cpp',
3807 'paint/TextPainterTest.cpp', 3807 'paint/TextPainterTest.cpp',
3808 'paint/ViewDisplayListTest.cpp', 3808 'paint/ViewDisplayListTest.cpp',
3809 'streams/ReadableStreamReaderTest.cpp', 3809 'streams/ReadableStreamReaderTest.cpp',
3810 'streams/ReadableStreamTest.cpp', 3810 'streams/ReadableStreamTest.cpp',
3811 'testing/PrivateScriptTestTest.cpp', 3811 'testing/PrivateScriptTestTest.cpp',
3812 'xml/parser/SharedBufferReaderTest.cpp', 3812 'xml/parser/SharedBufferReaderTest.cpp',
3813 ], 3813 ],
3814 } 3814 }
3815 } 3815 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698