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

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

Issue 1548523002: Use Document, rather than document element, for implicit root. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@intersection-observer
Patch Set: Nits, comments, rebaseline Created 4 years, 11 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2387 matching lines...) Expand 10 before | Expand all | Expand 10 after
2398 'dom/DocumentType.cpp', 2398 'dom/DocumentType.cpp',
2399 'dom/DocumentVisibilityObserver.cpp', 2399 'dom/DocumentVisibilityObserver.cpp',
2400 'dom/Element.cpp', 2400 'dom/Element.cpp',
2401 'dom/Element.h', 2401 'dom/Element.h',
2402 'dom/ElementData.cpp', 2402 'dom/ElementData.cpp',
2403 'dom/ElementData.h', 2403 'dom/ElementData.h',
2404 'dom/ElementDataCache.cpp', 2404 'dom/ElementDataCache.cpp',
2405 'dom/ElementDataCache.h', 2405 'dom/ElementDataCache.h',
2406 'dom/ElementFullscreen.cpp', 2406 'dom/ElementFullscreen.cpp',
2407 'dom/ElementFullscreen.h', 2407 'dom/ElementFullscreen.h',
2408 'dom/ElementIntersectionObserverData.cpp',
2409 'dom/ElementIntersectionObserverData.h',
2410 'dom/ElementRareData.cpp', 2408 'dom/ElementRareData.cpp',
2411 'dom/ElementRareData.h', 2409 'dom/ElementRareData.h',
2412 'dom/ElementTraversal.h', 2410 'dom/ElementTraversal.h',
2413 'dom/EmptyNodeList.cpp', 2411 'dom/EmptyNodeList.cpp',
2414 'dom/EmptyNodeList.h', 2412 'dom/EmptyNodeList.h',
2415 'dom/ExecutionContext.cpp', 2413 'dom/ExecutionContext.cpp',
2416 'dom/ExecutionContext.h', 2414 'dom/ExecutionContext.h',
2417 'dom/ExecutionContextTask.h', 2415 'dom/ExecutionContextTask.h',
2418 'dom/FirstLetterPseudoElement.cpp', 2416 'dom/FirstLetterPseudoElement.cpp',
2419 'dom/FirstLetterPseudoElement.h', 2417 'dom/FirstLetterPseudoElement.h',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
2472 'dom/NameNodeList.cpp', 2470 'dom/NameNodeList.cpp',
2473 'dom/NameNodeList.h', 2471 'dom/NameNodeList.h',
2474 'dom/NamedNodeMap.cpp', 2472 'dom/NamedNodeMap.cpp',
2475 'dom/Node.cpp', 2473 'dom/Node.cpp',
2476 'dom/NodeChildRemovalTracker.cpp', 2474 'dom/NodeChildRemovalTracker.cpp',
2477 'dom/NodeChildRemovalTracker.h', 2475 'dom/NodeChildRemovalTracker.h',
2478 'dom/NodeComputedStyle.h', 2476 'dom/NodeComputedStyle.h',
2479 'dom/NodeFilter.cpp', 2477 'dom/NodeFilter.cpp',
2480 'dom/NodeFilter.h', 2478 'dom/NodeFilter.h',
2481 'dom/NodeFilterCondition.h', 2479 'dom/NodeFilterCondition.h',
2480 'dom/NodeIntersectionObserverData.cpp',
2481 'dom/NodeIntersectionObserverData.h',
2482 'dom/NodeIterator.cpp', 2482 'dom/NodeIterator.cpp',
2483 'dom/NodeIterator.h', 2483 'dom/NodeIterator.h',
2484 'dom/NodeIteratorBase.cpp', 2484 'dom/NodeIteratorBase.cpp',
2485 'dom/NodeIteratorBase.h', 2485 'dom/NodeIteratorBase.h',
2486 'dom/NodeList.cpp', 2486 'dom/NodeList.cpp',
2487 'dom/NodeListsNodeData.cpp', 2487 'dom/NodeListsNodeData.cpp',
2488 'dom/NodeListsNodeData.h', 2488 'dom/NodeListsNodeData.h',
2489 'dom/NodeRareData.cpp', 2489 'dom/NodeRareData.cpp',
2490 'dom/NodeRareData.h', 2490 'dom/NodeRareData.h',
2491 'dom/NodeTraversal.cpp', 2491 'dom/NodeTraversal.cpp',
(...skipping 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after
4007 'style/SVGComputedStyleTest.cpp', 4007 'style/SVGComputedStyleTest.cpp',
4008 'svg/SVGPathParserTest.cpp', 4008 'svg/SVGPathParserTest.cpp',
4009 'svg/UnsafeSVGAttributeSanitizationTest.cpp', 4009 'svg/UnsafeSVGAttributeSanitizationTest.cpp',
4010 'testing/PrivateScriptTestTest.cpp', 4010 'testing/PrivateScriptTestTest.cpp',
4011 'timing/MemoryInfoTest.cpp', 4011 'timing/MemoryInfoTest.cpp',
4012 'workers/WorkerThreadTest.cpp', 4012 'workers/WorkerThreadTest.cpp',
4013 'xml/parser/SharedBufferReaderTest.cpp', 4013 'xml/parser/SharedBufferReaderTest.cpp',
4014 ], 4014 ],
4015 } 4015 }
4016 } 4016 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698