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

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

Issue 2100013002: Implement the new text-size-adjust CSS property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup convertTextSizeAdjust and add a test that better covers it Created 4 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
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 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 'style/StyleRareNonInheritedData.cpp', 841 'style/StyleRareNonInheritedData.cpp',
842 'style/StyleScrollSnapData.cpp', 842 'style/StyleScrollSnapData.cpp',
843 'style/StyleScrollSnapData.h', 843 'style/StyleScrollSnapData.h',
844 'style/StyleSelfAlignmentData.h', 844 'style/StyleSelfAlignmentData.h',
845 'style/StyleSurroundData.cpp', 845 'style/StyleSurroundData.cpp',
846 'style/StyleTransformData.cpp', 846 'style/StyleTransformData.cpp',
847 'style/StyleVariableData.cpp', 847 'style/StyleVariableData.cpp',
848 'style/StyleVariableData.h', 848 'style/StyleVariableData.h',
849 'style/StyleVisualData.cpp', 849 'style/StyleVisualData.cpp',
850 'style/StyleWillChangeData.cpp', 850 'style/StyleWillChangeData.cpp',
851 'style/TextSizeAdjust.h',
851 'layout/svg/line/SVGInlineFlowBox.cpp', 852 'layout/svg/line/SVGInlineFlowBox.cpp',
852 'layout/svg/line/SVGInlineFlowBox.h', 853 'layout/svg/line/SVGInlineFlowBox.h',
853 'layout/svg/line/SVGInlineTextBox.cpp', 854 'layout/svg/line/SVGInlineTextBox.cpp',
854 'layout/svg/line/SVGInlineTextBox.h', 855 'layout/svg/line/SVGInlineTextBox.h',
855 'layout/svg/line/SVGRootInlineBox.cpp', 856 'layout/svg/line/SVGRootInlineBox.cpp',
856 'layout/svg/line/SVGRootInlineBox.h', 857 'layout/svg/line/SVGRootInlineBox.h',
857 ], 858 ],
858 'webcore_non_rendering_files': [ 859 'webcore_non_rendering_files': [
859 'CoreInitializer.cpp', 860 'CoreInitializer.cpp',
860 'CoreInitializer.h', 861 'CoreInitializer.h',
(...skipping 3283 matching lines...) Expand 10 before | Expand all | Expand 10 after
4144 'layout/LayoutTableSectionTest.cpp', 4145 'layout/LayoutTableSectionTest.cpp',
4145 'layout/LayoutTestHelper.cpp', 4146 'layout/LayoutTestHelper.cpp',
4146 'layout/LayoutTestHelper.h', 4147 'layout/LayoutTestHelper.h',
4147 'layout/LayoutThemeTest.cpp', 4148 'layout/LayoutThemeTest.cpp',
4148 'layout/MapCoordinatesTest.cpp', 4149 'layout/MapCoordinatesTest.cpp',
4149 'layout/MultiColumnFragmentainerGroupTest.cpp', 4150 'layout/MultiColumnFragmentainerGroupTest.cpp',
4150 'layout/OverflowModelTest.cpp', 4151 'layout/OverflowModelTest.cpp',
4151 'layout/PaginationTest.cpp', 4152 'layout/PaginationTest.cpp',
4152 'layout/PaintContainmentTest.cpp', 4153 'layout/PaintContainmentTest.cpp',
4153 'layout/ScrollAnchorTest.cpp', 4154 'layout/ScrollAnchorTest.cpp',
4155 'layout/TextAutosizerTest.cpp',
4154 'layout/VisualRectMappingTest.cpp', 4156 'layout/VisualRectMappingTest.cpp',
4155 'layout/compositing/CompositedLayerMappingTest.cpp', 4157 'layout/compositing/CompositedLayerMappingTest.cpp',
4156 'layout/shapes/BoxShapeTest.cpp', 4158 'layout/shapes/BoxShapeTest.cpp',
4157 'layout/svg/LayoutSVGRootTest.cpp', 4159 'layout/svg/LayoutSVGRootTest.cpp',
4158 'loader/DocumentLoadTimingTest.cpp', 4160 'loader/DocumentLoadTimingTest.cpp',
4159 'loader/FrameFetchContextTest.cpp', 4161 'loader/FrameFetchContextTest.cpp',
4160 'loader/LinkLoaderTest.cpp', 4162 'loader/LinkLoaderTest.cpp',
4161 'loader/MixedContentCheckerTest.cpp', 4163 'loader/MixedContentCheckerTest.cpp',
4162 'loader/TextResourceDecoderBuilderTest.cpp', 4164 'loader/TextResourceDecoderBuilderTest.cpp',
4163 'loader/ThreadableLoaderTest.cpp', 4165 'loader/ThreadableLoaderTest.cpp',
(...skipping 30 matching lines...) Expand all
4194 'testing/PrivateScriptTestTest.cpp', 4196 'testing/PrivateScriptTestTest.cpp',
4195 'timing/MemoryInfoTest.cpp', 4197 'timing/MemoryInfoTest.cpp',
4196 'timing/PerformanceBaseTest.cpp', 4198 'timing/PerformanceBaseTest.cpp',
4197 'timing/PerformanceObserverTest.cpp', 4199 'timing/PerformanceObserverTest.cpp',
4198 'workers/WorkerThreadTest.cpp', 4200 'workers/WorkerThreadTest.cpp',
4199 'workers/WorkerThreadTestHelper.h', 4201 'workers/WorkerThreadTestHelper.h',
4200 'xml/parser/SharedBufferReaderTest.cpp', 4202 'xml/parser/SharedBufferReaderTest.cpp',
4201 ], 4203 ],
4202 } 4204 }
4203 } 4205 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698