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

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

Issue 148283013: Blink JavaScript shared memory prototype. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Tweaks Created 6 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
« no previous file with comments | « Source/bindings/v8/custom/V8LockManagerCustom.cpp ('k') | Source/core/dom/LockManager.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 'variables': { 2 'variables': {
3 # Files for which bindings (.cpp and .h files) will be generated 3 # Files for which bindings (.cpp and .h files) will be generated
4 'core_idl_files': [ 4 'core_idl_files': [
5 'animation/Animation.idl', 5 'animation/Animation.idl',
6 'animation/AnimationPlayer.idl', 6 'animation/AnimationPlayer.idl',
7 'animation/TimedItem.idl', 7 'animation/TimedItem.idl',
8 'animation/Timeline.idl', 8 'animation/Timeline.idl',
9 'animation/Timing.idl', 9 'animation/Timing.idl',
10 'clipboard/DataTransfer.idl', 10 'clipboard/DataTransfer.idl',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'dom/DOMException.idl', 55 'dom/DOMException.idl',
56 'dom/DOMImplementation.idl', 56 'dom/DOMImplementation.idl',
57 'dom/DOMSettableTokenList.idl', 57 'dom/DOMSettableTokenList.idl',
58 'dom/DOMStringList.idl', 58 'dom/DOMStringList.idl',
59 'dom/DOMStringMap.idl', 59 'dom/DOMStringMap.idl',
60 'dom/DOMTokenList.idl', 60 'dom/DOMTokenList.idl',
61 'dom/Document.idl', 61 'dom/Document.idl',
62 'dom/DocumentFragment.idl', 62 'dom/DocumentFragment.idl',
63 'dom/DocumentType.idl', 63 'dom/DocumentType.idl',
64 'dom/Element.idl', 64 'dom/Element.idl',
65 'dom/LockManager.idl',
65 'dom/MessageChannel.idl', 66 'dom/MessageChannel.idl',
66 'dom/MessagePort.idl', 67 'dom/MessagePort.idl',
67 'dom/MutationObserver.idl', 68 'dom/MutationObserver.idl',
68 'dom/MutationRecord.idl', 69 'dom/MutationRecord.idl',
69 'dom/NamedNodeMap.idl', 70 'dom/NamedNodeMap.idl',
70 'dom/Node.idl', 71 'dom/Node.idl',
71 'dom/NodeFilter.idl', 72 'dom/NodeFilter.idl',
72 'dom/NodeIterator.idl', 73 'dom/NodeIterator.idl',
73 'dom/NodeList.idl', 74 'dom/NodeList.idl',
74 'dom/Notation.idl', 75 'dom/Notation.idl',
(...skipping 1928 matching lines...) Expand 10 before | Expand all | Expand 10 after
2003 'dom/IconURL.h', 2004 'dom/IconURL.h',
2004 'dom/IdTargetObserver.cpp', 2005 'dom/IdTargetObserver.cpp',
2005 'dom/IdTargetObserver.h', 2006 'dom/IdTargetObserver.h',
2006 'dom/IdTargetObserverRegistry.cpp', 2007 'dom/IdTargetObserverRegistry.cpp',
2007 'dom/IdTargetObserverRegistry.h', 2008 'dom/IdTargetObserverRegistry.h',
2008 'dom/IgnoreDestructiveWriteCountIncrementer.h', 2009 'dom/IgnoreDestructiveWriteCountIncrementer.h',
2009 'dom/LiveNodeList.cpp', 2010 'dom/LiveNodeList.cpp',
2010 'dom/LiveNodeList.h', 2011 'dom/LiveNodeList.h',
2011 'dom/LiveNodeListBase.cpp', 2012 'dom/LiveNodeListBase.cpp',
2012 'dom/LiveNodeListBase.h', 2013 'dom/LiveNodeListBase.h',
2014 'dom/LockManager.cpp',
2015 'dom/LockManager.h',
2013 'dom/MainThreadTaskRunner.cpp', 2016 'dom/MainThreadTaskRunner.cpp',
2014 'dom/MainThreadTaskRunner.h', 2017 'dom/MainThreadTaskRunner.h',
2015 'dom/MessageChannel.cpp', 2018 'dom/MessageChannel.cpp',
2016 'dom/MessageChannel.h', 2019 'dom/MessageChannel.h',
2017 'dom/MessagePort.cpp', 2020 'dom/MessagePort.cpp',
2018 'dom/Microtask.cpp', 2021 'dom/Microtask.cpp',
2019 'dom/Microtask.h', 2022 'dom/Microtask.h',
2020 'dom/MutationCallback.h', 2023 'dom/MutationCallback.h',
2021 'dom/MutationObserver.cpp', 2024 'dom/MutationObserver.cpp',
2022 'dom/MutationObserver.h', 2025 'dom/MutationObserver.h',
(...skipping 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after
3370 'html/track/vtt/BufferedLineReaderTest.cpp', 3373 'html/track/vtt/BufferedLineReaderTest.cpp',
3371 'html/track/vtt/VTTScannerTest.cpp', 3374 'html/track/vtt/VTTScannerTest.cpp',
3372 'rendering/RenderOverflowTest.cpp', 3375 'rendering/RenderOverflowTest.cpp',
3373 'rendering/shapes/BoxShapeTest.cpp', 3376 'rendering/shapes/BoxShapeTest.cpp',
3374 'testing/UnitTestHelpers.cpp', 3377 'testing/UnitTestHelpers.cpp',
3375 'testing/UnitTestHelpers.h', 3378 'testing/UnitTestHelpers.h',
3376 'xml/parser/SharedBufferReaderTest.cpp', 3379 'xml/parser/SharedBufferReaderTest.cpp',
3377 ], 3380 ],
3378 } 3381 }
3379 } 3382 }
OLDNEW
« no previous file with comments | « Source/bindings/v8/custom/V8LockManagerCustom.cpp ('k') | Source/core/dom/LockManager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698