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

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

Issue 1167343002: Add methods for creating V8 extras-based ReadableStreams from C++ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: That todo is not necessary according to yhirano@ Created 5 years, 5 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/core/v8/V8HiddenValue.h ('k') | Source/core/core_generated.gypi » ('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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 'inspector/InspectorOverlayHost.idl', 288 'inspector/InspectorOverlayHost.idl',
289 'loader/appcache/ApplicationCache.idl', 289 'loader/appcache/ApplicationCache.idl',
290 'page/EventSource.idl', 290 'page/EventSource.idl',
291 'page/PagePopupController.idl', 291 'page/PagePopupController.idl',
292 'page/scrolling/ScrollState.idl', 292 'page/scrolling/ScrollState.idl',
293 'streams/ReadableByteStream.idl', 293 'streams/ReadableByteStream.idl',
294 'streams/ReadableByteStreamReader.idl', 294 'streams/ReadableByteStreamReader.idl',
295 'streams/ReadableStream.idl', 295 'streams/ReadableStream.idl',
296 'streams/ReadableStreamReader.idl', 296 'streams/ReadableStreamReader.idl',
297 'streams/Stream.idl', 297 'streams/Stream.idl',
298 'streams/UnderlyingSourceBase.idl',
298 'svg/SVGAElement.idl', 299 'svg/SVGAElement.idl',
299 'svg/SVGAngle.idl', 300 'svg/SVGAngle.idl',
300 'svg/SVGAnimateElement.idl', 301 'svg/SVGAnimateElement.idl',
301 'svg/SVGAnimateMotionElement.idl', 302 'svg/SVGAnimateMotionElement.idl',
302 'svg/SVGAnimateTransformElement.idl', 303 'svg/SVGAnimateTransformElement.idl',
303 'svg/SVGAnimatedAngle.idl', 304 'svg/SVGAnimatedAngle.idl',
304 'svg/SVGAnimatedBoolean.idl', 305 'svg/SVGAnimatedBoolean.idl',
305 'svg/SVGAnimatedEnumeration.idl', 306 'svg/SVGAnimatedEnumeration.idl',
306 'svg/SVGAnimatedInteger.idl', 307 'svg/SVGAnimatedInteger.idl',
307 'svg/SVGAnimatedLength.idl', 308 'svg/SVGAnimatedLength.idl',
(...skipping 1694 matching lines...) Expand 10 before | Expand all | Expand 10 after
2002 'paint/ViewPainter.h', 2003 'paint/ViewPainter.h',
2003 'plugins/PluginPlaceholder.h', 2004 'plugins/PluginPlaceholder.h',
2004 'plugins/PluginView.h', 2005 'plugins/PluginView.h',
2005 'plugins/testing/DictionaryPluginPlaceholder.h', 2006 'plugins/testing/DictionaryPluginPlaceholder.h',
2006 'plugins/testing/DocumentFragmentPluginPlaceholder.h', 2007 'plugins/testing/DocumentFragmentPluginPlaceholder.h',
2007 'streams/ReadableByteStream.cpp', 2008 'streams/ReadableByteStream.cpp',
2008 'streams/ReadableByteStream.h', 2009 'streams/ReadableByteStream.h',
2009 'streams/ReadableByteStreamReader.h', 2010 'streams/ReadableByteStreamReader.h',
2010 'streams/ReadableStream.cpp', 2011 'streams/ReadableStream.cpp',
2011 'streams/ReadableStream.h', 2012 'streams/ReadableStream.h',
2013 'streams/ReadableStream2.cpp',
2014 'streams/ReadableStream2.h',
2015 'streams/ReadableStreamController.h',
2012 'streams/ReadableStreamImpl.h', 2016 'streams/ReadableStreamImpl.h',
2013 'streams/ReadableStreamReader.cpp', 2017 'streams/ReadableStreamReader.cpp',
2014 'streams/ReadableStreamReader.h', 2018 'streams/ReadableStreamReader.h',
2015 'streams/Stream.cpp', 2019 'streams/Stream.cpp',
2016 'streams/Stream.h', 2020 'streams/Stream.h',
2017 'streams/UnderlyingSource.h', 2021 'streams/UnderlyingSource.h',
2022 'streams/UnderlyingSourceBase.cpp',
2023 'streams/UnderlyingSourceBase.h',
2018 'timing/ConsoleMemory.cpp', 2024 'timing/ConsoleMemory.cpp',
2019 'timing/ConsoleMemory.h', 2025 'timing/ConsoleMemory.h',
2020 'timing/DOMWindowPerformance.cpp', 2026 'timing/DOMWindowPerformance.cpp',
2021 'timing/DOMWindowPerformance.h', 2027 'timing/DOMWindowPerformance.h',
2022 'timing/MemoryInfo.cpp', 2028 'timing/MemoryInfo.cpp',
2023 'timing/Performance.cpp', 2029 'timing/Performance.cpp',
2024 'timing/Performance.h', 2030 'timing/Performance.h',
2025 'timing/PerformanceBase.cpp', 2031 'timing/PerformanceBase.cpp',
2026 'timing/PerformanceBase.h', 2032 'timing/PerformanceBase.h',
2027 'timing/PerformanceCompositeTiming.cpp', 2033 'timing/PerformanceCompositeTiming.cpp',
(...skipping 1715 matching lines...) Expand 10 before | Expand all | Expand 10 after
3743 'testing/PluginPlaceholderOptions.idl', 3749 'testing/PluginPlaceholderOptions.idl',
3744 ], 3750 ],
3745 'webcore_testing_idl_files': [ 3751 'webcore_testing_idl_files': [
3746 'testing/DictionaryTest.idl', 3752 'testing/DictionaryTest.idl',
3747 'testing/GCObservation.idl', 3753 'testing/GCObservation.idl',
3748 'testing/GarbageCollectedScriptWrappable.idl', 3754 'testing/GarbageCollectedScriptWrappable.idl',
3749 'testing/InternalSettings.idl', 3755 'testing/InternalSettings.idl',
3750 'testing/LayerRect.idl', 3756 'testing/LayerRect.idl',
3751 'testing/LayerRectList.idl', 3757 'testing/LayerRectList.idl',
3752 'testing/PrivateScriptTest.idl', 3758 'testing/PrivateScriptTest.idl',
3759 'testing/ReadableStreamTestCase.idl',
3760 'testing/ReadableStreamTestRequest.idl',
3761 'testing/ReadableStreamTestSource.idl',
3753 'testing/RefCountedScriptWrappable.idl', 3762 'testing/RefCountedScriptWrappable.idl',
3754 'testing/TypeConversions.idl', 3763 'testing/TypeConversions.idl',
3755 'testing/UnionTypesTest.idl', 3764 'testing/UnionTypesTest.idl',
3756 ], 3765 ],
3757 # testing IDL files that have partial interfaces in modules. 3766 # testing IDL files that have partial interfaces in modules.
3758 'webcore_testing_idl_with_modules_dependency_files': [ 3767 'webcore_testing_idl_with_modules_dependency_files': [
3759 'testing/Internals.idl', 3768 'testing/Internals.idl',
3760 ], 3769 ],
3761 'webcore_testing_dependency_idl_files': [ 3770 'webcore_testing_dependency_idl_files': [
3762 'testing/PartialPrivateScriptTest.idl', 3771 'testing/PartialPrivateScriptTest.idl',
(...skipping 27 matching lines...) Expand all
3790 'testing/InternalSettings.h', 3799 'testing/InternalSettings.h',
3791 'testing/Internals.cpp', 3800 'testing/Internals.cpp',
3792 'testing/Internals.h', 3801 'testing/Internals.h',
3793 'testing/LayerRect.h', 3802 'testing/LayerRect.h',
3794 'testing/LayerRectList.cpp', 3803 'testing/LayerRectList.cpp',
3795 'testing/LayerRectList.h', 3804 'testing/LayerRectList.h',
3796 'testing/NullExecutionContext.cpp', 3805 'testing/NullExecutionContext.cpp',
3797 'testing/NullExecutionContext.h', 3806 'testing/NullExecutionContext.h',
3798 'testing/PrivateScriptTest.cpp', 3807 'testing/PrivateScriptTest.cpp',
3799 'testing/PrivateScriptTest.h', 3808 'testing/PrivateScriptTest.h',
3809 'testing/ReadableStreamTestCase.cpp',
3810 'testing/ReadableStreamTestCase.h',
3811 'testing/ReadableStreamTestRequest.cpp',
3812 'testing/ReadableStreamTestRequest.h',
3813 'testing/ReadableStreamTestSource.h',
3800 'testing/RefCountedScriptWrappable.cpp', 3814 'testing/RefCountedScriptWrappable.cpp',
3801 'testing/RefCountedScriptWrappable.h', 3815 'testing/RefCountedScriptWrappable.h',
3802 'testing/TypeConversions.h', 3816 'testing/TypeConversions.h',
3803 'testing/UnionTypesTest.cpp', 3817 'testing/UnionTypesTest.cpp',
3804 'testing/UnionTypesTest.h', 3818 'testing/UnionTypesTest.h',
3805 'testing/v8/WebCoreTestSupport.cpp', 3819 'testing/v8/WebCoreTestSupport.cpp',
3806 'testing/v8/WebCoreTestSupport.h', 3820 'testing/v8/WebCoreTestSupport.h',
3807 ], 3821 ],
3808 'core_unittest_files': [ 3822 'core_unittest_files': [
3809 'animation/AnimationClockTest.cpp', 3823 'animation/AnimationClockTest.cpp',
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
3968 'style/OutlineValueTest.cpp', 3982 'style/OutlineValueTest.cpp',
3969 'style/SVGComputedStyleTest.cpp', 3983 'style/SVGComputedStyleTest.cpp',
3970 'svg/UnsafeSVGAttributeSanitizationTest.cpp', 3984 'svg/UnsafeSVGAttributeSanitizationTest.cpp',
3971 'testing/PrivateScriptTestTest.cpp', 3985 'testing/PrivateScriptTestTest.cpp',
3972 'timing/MemoryInfoTest.cpp', 3986 'timing/MemoryInfoTest.cpp',
3973 'workers/WorkerThreadTest.cpp', 3987 'workers/WorkerThreadTest.cpp',
3974 'xml/parser/SharedBufferReaderTest.cpp', 3988 'xml/parser/SharedBufferReaderTest.cpp',
3975 ], 3989 ],
3976 } 3990 }
3977 } 3991 }
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/V8HiddenValue.h ('k') | Source/core/core_generated.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698