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

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

Issue 2022863002: [InputEvent] Introduce |StaticRange| and use in |InputEvent::getRanges()| (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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 '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/KeyframeEffect.idl', 8 'animation/KeyframeEffect.idl',
9 'animation/EffectModel.idl', 9 'animation/EffectModel.idl',
10 'animation/AnimationEffectReadOnly.idl', 10 'animation/AnimationEffectReadOnly.idl',
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 'dom/MutationObserver.idl', 98 'dom/MutationObserver.idl',
99 'dom/MutationRecord.idl', 99 'dom/MutationRecord.idl',
100 'dom/NamedNodeMap.idl', 100 'dom/NamedNodeMap.idl',
101 'dom/Node.idl', 101 'dom/Node.idl',
102 'dom/NodeFilter.idl', 102 'dom/NodeFilter.idl',
103 'dom/NodeIterator.idl', 103 'dom/NodeIterator.idl',
104 'dom/NodeList.idl', 104 'dom/NodeList.idl',
105 'dom/ProcessingInstruction.idl', 105 'dom/ProcessingInstruction.idl',
106 'dom/Range.idl', 106 'dom/Range.idl',
107 'dom/SharedArrayBuffer.idl', 107 'dom/SharedArrayBuffer.idl',
108 'dom/StaticRange.idl',
108 'dom/StringCallback.idl', 109 'dom/StringCallback.idl',
109 'dom/Text.idl', 110 'dom/Text.idl',
110 'dom/Touch.idl', 111 'dom/Touch.idl',
111 'dom/TouchList.idl', 112 'dom/TouchList.idl',
112 'dom/TreeWalker.idl', 113 'dom/TreeWalker.idl',
113 'dom/Uint16Array.idl', 114 'dom/Uint16Array.idl',
114 'dom/Uint32Array.idl', 115 'dom/Uint32Array.idl',
115 'dom/Uint8Array.idl', 116 'dom/Uint8Array.idl',
116 'dom/Uint8ClampedArray.idl', 117 'dom/Uint8ClampedArray.idl',
117 'dom/URLSearchParams.idl', 118 'dom/URLSearchParams.idl',
(...skipping 2475 matching lines...) Expand 10 before | Expand all | Expand 10 after
2593 'dom/ScriptedIdleTaskController.h', 2594 'dom/ScriptedIdleTaskController.h',
2594 'dom/SecurityContext.cpp', 2595 'dom/SecurityContext.cpp',
2595 'dom/SecurityContext.h', 2596 'dom/SecurityContext.h',
2596 'dom/SelectorQuery.cpp', 2597 'dom/SelectorQuery.cpp',
2597 'dom/SelectorQuery.h', 2598 'dom/SelectorQuery.h',
2598 'dom/ShadowTreeStyleSheetCollection.cpp', 2599 'dom/ShadowTreeStyleSheetCollection.cpp',
2599 'dom/ShadowTreeStyleSheetCollection.h', 2600 'dom/ShadowTreeStyleSheetCollection.h',
2600 'dom/SimulatedClickOptions.h', 2601 'dom/SimulatedClickOptions.h',
2601 'dom/SpaceSplitString.cpp', 2602 'dom/SpaceSplitString.cpp',
2602 'dom/StaticNodeList.h', 2603 'dom/StaticNodeList.h',
2604 'dom/StaticRange.cpp',
2605 'dom/StaticRange.h',
2603 'dom/StringCallback.cpp', 2606 'dom/StringCallback.cpp',
2604 'dom/StringCallback.h', 2607 'dom/StringCallback.h',
2605 'dom/StyleChangeReason.cpp', 2608 'dom/StyleChangeReason.cpp',
2606 'dom/StyleChangeReason.h', 2609 'dom/StyleChangeReason.h',
2607 'dom/StyleElement.cpp', 2610 'dom/StyleElement.cpp',
2608 'dom/StyleElement.h', 2611 'dom/StyleElement.h',
2609 'dom/StyleEngine.cpp', 2612 'dom/StyleEngine.cpp',
2610 'dom/StyleEngine.h', 2613 'dom/StyleEngine.h',
2611 'dom/StyleSheetCandidate.cpp', 2614 'dom/StyleSheetCandidate.cpp',
2612 'dom/StyleSheetCandidate.h', 2615 'dom/StyleSheetCandidate.h',
(...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after
3992 'dom/DOMImplementationTest.cpp', 3995 'dom/DOMImplementationTest.cpp',
3993 'dom/DocumentStatisticsCollectorTest.cpp', 3996 'dom/DocumentStatisticsCollectorTest.cpp',
3994 'dom/DocumentTest.cpp', 3997 'dom/DocumentTest.cpp',
3995 'dom/ElementTest.cpp', 3998 'dom/ElementTest.cpp',
3996 'dom/MainThreadTaskRunnerTest.cpp', 3999 'dom/MainThreadTaskRunnerTest.cpp',
3997 'dom/NodeTest.cpp', 4000 'dom/NodeTest.cpp',
3998 'dom/NthIndexCacheTest.cpp', 4001 'dom/NthIndexCacheTest.cpp',
3999 'dom/RangeTest.cpp', 4002 'dom/RangeTest.cpp',
4000 'dom/ScriptRunnerTest.cpp', 4003 'dom/ScriptRunnerTest.cpp',
4001 'dom/SelectorQueryTest.cpp', 4004 'dom/SelectorQueryTest.cpp',
4005 'dom/StaticRangeTest.cpp',
4002 'dom/StyleElementTest.cpp', 4006 'dom/StyleElementTest.cpp',
4003 'dom/StyleEngineTest.cpp', 4007 'dom/StyleEngineTest.cpp',
4004 'dom/TextTest.cpp', 4008 'dom/TextTest.cpp',
4005 'dom/TreeScopeStyleSheetCollectionTest.cpp', 4009 'dom/TreeScopeStyleSheetCollectionTest.cpp',
4006 'dom/TreeScopeTest.cpp', 4010 'dom/TreeScopeTest.cpp',
4007 'dom/URLSearchParamsTest.cpp', 4011 'dom/URLSearchParamsTest.cpp',
4008 'dom/custom/CustomElementDescriptorTest.cpp', 4012 'dom/custom/CustomElementDescriptorTest.cpp',
4009 'dom/custom/CustomElementReactionQueueTest.cpp', 4013 'dom/custom/CustomElementReactionQueueTest.cpp',
4010 'dom/custom/CustomElementReactionStackTest.cpp', 4014 'dom/custom/CustomElementReactionStackTest.cpp',
4011 'dom/custom/CustomElementReactionTestHelpers.h', 4015 'dom/custom/CustomElementReactionTestHelpers.h',
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
4165 'testing/PrivateScriptTestTest.cpp', 4169 'testing/PrivateScriptTestTest.cpp',
4166 'timing/MemoryInfoTest.cpp', 4170 'timing/MemoryInfoTest.cpp',
4167 'timing/PerformanceBaseTest.cpp', 4171 'timing/PerformanceBaseTest.cpp',
4168 'timing/PerformanceObserverTest.cpp', 4172 'timing/PerformanceObserverTest.cpp',
4169 'workers/WorkerThreadTest.cpp', 4173 'workers/WorkerThreadTest.cpp',
4170 'workers/WorkerThreadTestHelper.h', 4174 'workers/WorkerThreadTestHelper.h',
4171 'xml/parser/SharedBufferReaderTest.cpp', 4175 'xml/parser/SharedBufferReaderTest.cpp',
4172 ], 4176 ],
4173 } 4177 }
4174 } 4178 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698