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

Unified Diff: sky/engine/core/core.gni

Issue 1214833004: Split Size into Size and Offset. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/bindings/scripts/templates/interface_dart.template ('k') | sky/engine/core/painting/Canvas.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/core.gni
diff --git a/sky/engine/core/core.gni b/sky/engine/core/core.gni
index 80f631709d43fa1ad77389193f865b6ccab02d5e..b24c0d616cb8f3d7777ab669bbfeba716409029e 100644
--- a/sky/engine/core/core.gni
+++ b/sky/engine/core/core.gni
@@ -5,8 +5,58 @@
sky_core_output_dir = "$root_gen_dir/sky/core"
sky_core_files = [
+ "Init.cpp",
+ "Init.h",
"animation/ActiveAnimations.cpp",
"animation/ActiveAnimations.h",
+ "animation/Animation.cpp",
+ "animation/Animation.h",
+ "animation/AnimationClock.cpp",
+ "animation/AnimationClock.h",
+ "animation/AnimationEffect.h",
+ "animation/AnimationHelpers.h",
+ "animation/AnimationNode.cpp",
+ "animation/AnimationNode.h",
+ "animation/AnimationNodeTiming.cpp",
+ "animation/AnimationNodeTiming.h",
+ "animation/AnimationPlayer.cpp",
+ "animation/AnimationPlayer.h",
+ "animation/AnimationStack.cpp",
+ "animation/AnimationStack.h",
+ "animation/AnimationTimeline.cpp",
+ "animation/AnimationTimeline.h",
+ "animation/DefaultStyleInterpolation.h",
+ "animation/DeferredLegacyStyleInterpolation.cpp",
+ "animation/DeferredLegacyStyleInterpolation.h",
+ "animation/DocumentAnimation.h",
+ "animation/DocumentAnimations.cpp",
+ "animation/DocumentAnimations.h",
+ "animation/ElementAnimation.h",
+ "animation/InertAnimation.cpp",
+ "animation/InertAnimation.h",
+ "animation/InterpolableValue.cpp",
+ "animation/InterpolableValue.h",
+ "animation/Interpolation.cpp",
+ "animation/Interpolation.h",
+ "animation/InterpolationEffect.cpp",
+ "animation/InterpolationEffect.h",
+ "animation/Keyframe.h",
+ "animation/KeyframeEffectModel.cpp",
+ "animation/KeyframeEffectModel.h",
+ "animation/LegacyStyleInterpolation.h",
+ "animation/LengthStyleInterpolation.cpp",
+ "animation/LengthStyleInterpolation.h",
+ "animation/PendingAnimations.cpp",
+ "animation/PendingAnimations.h",
+ "animation/SampledEffect.cpp",
+ "animation/SampledEffect.h",
+ "animation/StringKeyframe.cpp",
+ "animation/StringKeyframe.h",
+ "animation/StyleInterpolation.h",
+ "animation/Timing.h",
+ "animation/TimingCalculations.h",
+ "animation/TimingInput.cpp",
+ "animation/TimingInput.h",
"animation/animatable/AnimatableClipPathOperation.cpp",
"animation/animatable/AnimatableClipPathOperation.h",
"animation/animatable/AnimatableColor.cpp",
@@ -43,24 +93,6 @@ sky_core_files = [
"animation/animatable/AnimatableValue.h",
"animation/animatable/AnimatableValueKeyframe.cpp",
"animation/animatable/AnimatableValueKeyframe.h",
- "animation/Animation.cpp",
- "animation/Animation.h",
- "animation/AnimationClock.cpp",
- "animation/AnimationClock.h",
- "animation/AnimationEffect.h",
- "animation/AnimationHelpers.h",
- "animation/AnimationNode.cpp",
- "animation/AnimationNode.h",
- "animation/AnimationNodeTiming.cpp",
- "animation/AnimationNodeTiming.h",
- "animation/AnimationPlayer.cpp",
- "animation/AnimationPlayer.h",
- "animation/AnimationStack.cpp",
- "animation/AnimationStack.h",
- "animation/AnimationTimeline.cpp",
- "animation/AnimationTimeline.h",
- "animation/PendingAnimations.cpp",
- "animation/PendingAnimations.h",
"animation/css/CSSAnimatableValueFactory.cpp",
"animation/css/CSSAnimatableValueFactory.h",
"animation/css/CSSAnimationData.cpp",
@@ -73,36 +105,6 @@ sky_core_files = [
"animation/css/CSSTimingData.h",
"animation/css/CSSTransitionData.cpp",
"animation/css/CSSTransitionData.h",
- "animation/DefaultStyleInterpolation.h",
- "animation/DeferredLegacyStyleInterpolation.cpp",
- "animation/DeferredLegacyStyleInterpolation.h",
- "animation/DocumentAnimation.h",
- "animation/DocumentAnimations.cpp",
- "animation/DocumentAnimations.h",
- "animation/ElementAnimation.h",
- "animation/InertAnimation.cpp",
- "animation/InertAnimation.h",
- "animation/InterpolableValue.cpp",
- "animation/InterpolableValue.h",
- "animation/Interpolation.cpp",
- "animation/Interpolation.h",
- "animation/InterpolationEffect.cpp",
- "animation/InterpolationEffect.h",
- "animation/Keyframe.h",
- "animation/KeyframeEffectModel.cpp",
- "animation/KeyframeEffectModel.h",
- "animation/LegacyStyleInterpolation.h",
- "animation/LengthStyleInterpolation.cpp",
- "animation/LengthStyleInterpolation.h",
- "animation/SampledEffect.cpp",
- "animation/SampledEffect.h",
- "animation/StringKeyframe.cpp",
- "animation/StringKeyframe.h",
- "animation/StyleInterpolation.h",
- "animation/Timing.h",
- "animation/TimingCalculations.h",
- "animation/TimingInput.cpp",
- "animation/TimingInput.h",
"app/AbstractModule.cpp",
"app/AbstractModule.h",
"app/Application.cpp",
@@ -199,10 +201,10 @@ sky_core_files = [
"css/CSSValueList.h",
"css/CSSValuePool.cpp",
"css/CSSValuePool.h",
- "css/DocumentFontFaceSet.cpp",
- "css/DocumentFontFaceSet.h",
"css/DOMWindowCSS.cpp",
"css/DOMWindowCSS.h",
+ "css/DocumentFontFaceSet.cpp",
+ "css/DocumentFontFaceSet.h",
"css/ElementRuleCollector.cpp",
"css/ElementRuleCollector.h",
"css/FontFace.cpp",
@@ -242,6 +244,31 @@ sky_core_files = [
"css/MediaValuesDynamic.cpp",
"css/MediaValuesDynamic.h",
"css/Pair.h",
+ "css/PointerProperties.h",
+ "css/PropertySetCSSStyleDeclaration.cpp",
+ "css/PropertySetCSSStyleDeclaration.h",
+ "css/RGBColor.cpp",
+ "css/RGBColor.h",
+ "css/Rect.cpp",
+ "css/Rect.h",
+ "css/RemoteFontFaceSource.cpp",
+ "css/RemoteFontFaceSource.h",
+ "css/RuleFeature.cpp",
+ "css/RuleFeature.h",
+ "css/RuleSet.cpp",
+ "css/RuleSet.h",
+ "css/SelectorChecker.cpp",
+ "css/SelectorChecker.h",
+ "css/StyleColor.h",
+ "css/StylePropertySerializer.cpp",
+ "css/StylePropertySerializer.h",
+ "css/StylePropertySet.cpp",
+ "css/StylePropertySet.h",
+ "css/StylePropertyShorthandCustom.cpp",
+ "css/StyleRule.cpp",
+ "css/StyleRule.h",
+ "css/StyleSheetContents.cpp",
+ "css/StyleSheetContents.h",
"css/parser/BisonCSSParser.h",
"css/parser/CSSParserIdioms.h",
"css/parser/CSSParserMode.cpp",
@@ -264,13 +291,6 @@ sky_core_files = [
"css/parser/MediaQueryTokenizer.h",
"css/parser/SizesCalcParser.cpp",
"css/parser/SizesCalcParser.h",
- "css/PointerProperties.h",
- "css/PropertySetCSSStyleDeclaration.cpp",
- "css/PropertySetCSSStyleDeclaration.h",
- "css/Rect.cpp",
- "css/Rect.h",
- "css/RemoteFontFaceSource.cpp",
- "css/RemoteFontFaceSource.h",
"css/resolver/AnimatedStyleBuilder.cpp",
"css/resolver/AnimatedStyleBuilder.h",
"css/resolver/CSSToStyleMap.cpp",
@@ -283,11 +303,11 @@ sky_core_files = [
"css/resolver/FilterOperationResolver.h",
"css/resolver/FontBuilder.cpp",
"css/resolver/FontBuilder.h",
- "css/resolver/MatchedPropertiesCache.cpp",
- "css/resolver/MatchedPropertiesCache.h",
"css/resolver/MatchRequest.h",
"css/resolver/MatchResult.cpp",
"css/resolver/MatchResult.h",
+ "css/resolver/MatchedPropertiesCache.cpp",
+ "css/resolver/MatchedPropertiesCache.h",
"css/resolver/ScopedStyleResolver.cpp",
"css/resolver/ScopedStyleResolver.h",
"css/resolver/SharedStyleFinder.cpp",
@@ -308,24 +328,6 @@ sky_core_files = [
"css/resolver/StyleResourceLoader.h",
"css/resolver/TransformBuilder.cpp",
"css/resolver/TransformBuilder.h",
- "css/RGBColor.cpp",
- "css/RGBColor.h",
- "css/RuleFeature.cpp",
- "css/RuleFeature.h",
- "css/RuleSet.cpp",
- "css/RuleSet.h",
- "css/SelectorChecker.cpp",
- "css/SelectorChecker.h",
- "css/StyleColor.h",
- "css/StylePropertySerializer.cpp",
- "css/StylePropertySerializer.h",
- "css/StylePropertySet.cpp",
- "css/StylePropertySet.h",
- "css/StylePropertyShorthandCustom.cpp",
- "css/StyleRule.cpp",
- "css/StyleRule.h",
- "css/StyleSheetContents.cpp",
- "css/StyleSheetContents.h",
"dom/ActiveDOMObject.cpp",
"dom/ActiveDOMObject.h",
"dom/Attr.cpp",
@@ -346,12 +348,18 @@ sky_core_files = [
"dom/ContextLifecycleNotifier.h",
"dom/ContextLifecycleObserver.cpp",
"dom/ContextLifecycleObserver.h",
- "dom/custom/custom_element.cc",
- "dom/custom/custom_element.h",
- "dom/custom/custom_element_callback_scope.cc",
- "dom/custom/custom_element_callback_scope.h",
- "dom/custom/custom_element_registry.cc",
- "dom/custom/custom_element_registry.h",
+ "dom/DOMError.cpp",
+ "dom/DOMError.h",
+ "dom/DOMException.cpp",
+ "dom/DOMException.h",
+ "dom/DOMTokenList.cpp",
+ "dom/DOMTokenList.h",
+ "dom/DOMURL.cpp",
+ "dom/DOMURL.h",
+ "dom/DOMURLUtils.cpp",
+ "dom/DOMURLUtils.h",
+ "dom/DOMURLUtilsReadOnly.cpp",
+ "dom/DOMURLUtilsReadOnly.h",
"dom/Document.cpp",
"dom/Document.h",
"dom/DocumentFragment.cpp",
@@ -375,18 +383,6 @@ sky_core_files = [
"dom/DocumentParser.cpp",
"dom/DocumentParser.h",
"dom/DocumentSupplementable.h",
- "dom/DOMError.cpp",
- "dom/DOMError.h",
- "dom/DOMException.cpp",
- "dom/DOMException.h",
- "dom/DOMTokenList.cpp",
- "dom/DOMTokenList.h",
- "dom/DOMURL.cpp",
- "dom/DOMURL.h",
- "dom/DOMURLUtils.cpp",
- "dom/DOMURLUtils.h",
- "dom/DOMURLUtilsReadOnly.cpp",
- "dom/DOMURLUtilsReadOnly.h",
"dom/Element.cpp",
"dom/Element.h",
"dom/ElementData.cpp",
@@ -418,9 +414,9 @@ sky_core_files = [
"dom/NodeList.h",
"dom/NodeRareData.cpp",
"dom/NodeRareData.h",
+ "dom/NodeRenderStyle.h",
"dom/NodeRenderingTraversal.cpp",
"dom/NodeRenderingTraversal.h",
- "dom/NodeRenderStyle.h",
"dom/NodeTraversal.cpp",
"dom/NodeTraversal.h",
"dom/NodeWithIndex.h",
@@ -433,26 +429,14 @@ sky_core_files = [
"dom/Range.cpp",
"dom/Range.h",
"dom/RangeBoundaryPoint.h",
- "dom/RenderedDocumentMarker.h",
"dom/RenderTreeBuilder.cpp",
"dom/RenderTreeBuilder.h",
+ "dom/RenderedDocumentMarker.h",
"dom/RequestAnimationFrameCallback.h",
"dom/ScriptedAnimationController.cpp",
"dom/ScriptedAnimationController.h",
"dom/SelectorQuery.cpp",
"dom/SelectorQuery.h",
- "dom/shadow/ComposedTreeWalker.cpp",
- "dom/shadow/ComposedTreeWalker.h",
- "dom/shadow/ContentDistribution.cpp",
- "dom/shadow/ContentDistribution.h",
- "dom/shadow/ElementShadow.cpp",
- "dom/shadow/ElementShadow.h",
- "dom/shadow/InsertionPoint.cpp",
- "dom/shadow/InsertionPoint.h",
- "dom/shadow/SelectRuleFeatureSet.cpp",
- "dom/shadow/SelectRuleFeatureSet.h",
- "dom/shadow/ShadowRoot.cpp",
- "dom/shadow/ShadowRoot.h",
"dom/SpaceSplitString.cpp",
"dom/SpaceSplitString.h",
"dom/StaticNodeList.h",
@@ -472,6 +456,24 @@ sky_core_files = [
"dom/UserActionElementSet.h",
"dom/WeakNodeMap.cpp",
"dom/WeakNodeMap.h",
+ "dom/custom/custom_element.cc",
+ "dom/custom/custom_element.h",
+ "dom/custom/custom_element_callback_scope.cc",
+ "dom/custom/custom_element_callback_scope.h",
+ "dom/custom/custom_element_registry.cc",
+ "dom/custom/custom_element_registry.h",
+ "dom/shadow/ComposedTreeWalker.cpp",
+ "dom/shadow/ComposedTreeWalker.h",
+ "dom/shadow/ContentDistribution.cpp",
+ "dom/shadow/ContentDistribution.h",
+ "dom/shadow/ElementShadow.cpp",
+ "dom/shadow/ElementShadow.h",
+ "dom/shadow/InsertionPoint.cpp",
+ "dom/shadow/InsertionPoint.h",
+ "dom/shadow/SelectRuleFeatureSet.cpp",
+ "dom/shadow/SelectRuleFeatureSet.h",
+ "dom/shadow/ShadowRoot.cpp",
+ "dom/shadow/ShadowRoot.h",
"editing/AppendNodeCommand.cpp",
"editing/AppendNodeCommand.h",
"editing/ApplyBlockElementCommand.cpp",
@@ -483,12 +485,12 @@ sky_core_files = [
"editing/CompositionUnderline.h",
"editing/CompositionUnderlineRangeFilter.cpp",
"editing/CompositionUnderlineRangeFilter.h",
+ "editing/DOMSelection.cpp",
+ "editing/DOMSelection.h",
"editing/DeleteFromTextNodeCommand.cpp",
"editing/DeleteFromTextNodeCommand.h",
"editing/DeleteSelectionCommand.cpp",
"editing/DeleteSelectionCommand.h",
- "editing/DOMSelection.cpp",
- "editing/DOMSelection.h",
"editing/EditAction.h",
"editing/EditCommand.cpp",
"editing/EditCommand.h",
@@ -504,8 +506,6 @@ sky_core_files = [
"editing/FindOptions.h",
"editing/FrameSelection.cpp",
"editing/FrameSelection.h",
- "editing/htmlediting.cpp",
- "editing/htmlediting.h",
"editing/HTMLInterchange.cpp",
"editing/HTMLInterchange.h",
"editing/InputMethodController.cpp",
@@ -537,10 +537,10 @@ sky_core_files = [
"editing/SelectionType.h",
"editing/SmartReplace.h",
"editing/SmartReplaceICU.cpp",
- "editing/SpellChecker.cpp",
- "editing/SpellChecker.h",
"editing/SpellCheckRequester.cpp",
"editing/SpellCheckRequester.h",
+ "editing/SpellChecker.cpp",
+ "editing/SpellChecker.h",
"editing/SplitElementCommand.cpp",
"editing/SplitElementCommand.h",
"editing/SplitTextNodeCommand.cpp",
@@ -565,6 +565,8 @@ sky_core_files = [
"editing/VisibleUnits.cpp",
"editing/VisibleUnits.h",
"editing/WritingDirection.h",
+ "editing/htmlediting.cpp",
+ "editing/htmlediting.h",
"events/AnimationEvent.cpp",
"events/AnimationEvent.h",
"events/AnimationPlayerEvent.cpp",
@@ -579,10 +581,10 @@ sky_core_files = [
"events/ErrorEvent.h",
"events/Event.cpp",
"events/Event.h",
- "events/EventDispatcher.cpp",
- "events/EventDispatcher.h",
"events/EventDispatchMediator.cpp",
"events/EventDispatchMediator.h",
+ "events/EventDispatcher.cpp",
+ "events/EventDispatcher.h",
"events/EventListener.h",
"events/EventListenerMap.cpp",
"events/EventListenerMap.h",
@@ -729,6 +731,8 @@ sky_core_files = [
"html/HTMLTitleElement.h",
"html/ImageData.cpp",
"html/ImageData.h",
+ "html/TextMetrics.h",
+ "html/VoidCallback.h",
"html/imports/HTMLImport.cpp",
"html/imports/HTMLImport.h",
"html/imports/HTMLImportChild.cpp",
@@ -736,13 +740,13 @@ sky_core_files = [
"html/imports/HTMLImportChildClient.h",
"html/imports/HTMLImportLoader.cpp",
"html/imports/HTMLImportLoader.h",
- "html/imports/HTMLImportsController.cpp",
- "html/imports/HTMLImportsController.h",
"html/imports/HTMLImportState.h",
"html/imports/HTMLImportStateResolver.cpp",
"html/imports/HTMLImportStateResolver.h",
"html/imports/HTMLImportTreeRoot.cpp",
"html/imports/HTMLImportTreeRoot.h",
+ "html/imports/HTMLImportsController.cpp",
+ "html/imports/HTMLImportsController.h",
"html/parser/AtomicHTMLToken.h",
"html/parser/BackgroundHTMLParser.cpp",
"html/parser/BackgroundHTMLParser.h",
@@ -777,10 +781,6 @@ sky_core_files = [
"html/parser/NestingLevelIncrementer.h",
"html/parser/TextResourceDecoder.cpp",
"html/parser/TextResourceDecoder.h",
- "html/TextMetrics.h",
- "html/VoidCallback.h",
- "Init.cpp",
- "Init.h",
"inspector/ConsoleAPITypes.h",
"inspector/ConsoleMessage.cpp",
"inspector/ConsoleMessage.h",
@@ -790,12 +790,12 @@ sky_core_files = [
"inspector/InspectorCounters.h",
"inspector/InspectorNodeIds.cpp",
"inspector/InspectorNodeIds.h",
+ "inspector/ScriptAsyncCallStack.cpp",
+ "inspector/ScriptAsyncCallStack.h",
"inspector/ScriptCallFrame.cpp",
"inspector/ScriptCallFrame.h",
"inspector/ScriptCallStack.cpp",
"inspector/ScriptCallStack.h",
- "inspector/ScriptAsyncCallStack.cpp",
- "inspector/ScriptAsyncCallStack.h",
"inspector/ScriptGCEventListener.h",
"layout/LayoutCallback.h",
"loader/CanvasImageDecoder.cpp",
@@ -810,9 +810,9 @@ sky_core_files = [
"loader/FrameLoader.h",
"loader/FrameLoaderClient.h",
"loader/FrameLoaderTypes.h",
+ "loader/ImageDecoderCallback.h",
"loader/ImageLoader.cpp",
"loader/ImageLoader.h",
- "loader/ImageDecoderCallback.h",
"loader/MojoLoader.cpp",
"loader/MojoLoader.h",
"loader/NavigationPolicy.h",
@@ -840,6 +840,8 @@ sky_core_files = [
"painting/Canvas.h",
"painting/CanvasColor.cpp",
"painting/CanvasColor.h",
+ "painting/CanvasGradient.cpp",
+ "painting/CanvasGradient.h",
"painting/CanvasImage.cpp",
"painting/CanvasImage.h",
"painting/CanvasPath.cpp",
@@ -852,14 +854,14 @@ sky_core_files = [
"painting/DrawLooperAddLayerCallback.h",
"painting/DrawLooperLayerInfo.cpp",
"painting/DrawLooperLayerInfo.h",
- "painting/CanvasGradient.cpp",
- "painting/CanvasGradient.h",
"painting/LayerDrawLooperBuilder.cpp",
"painting/LayerDrawLooperBuilder.h",
"painting/LayoutRoot.cpp",
"painting/LayoutRoot.h",
"painting/MaskFilter.cpp",
"painting/MaskFilter.h",
+ "painting/Offset.cpp",
+ "painting/Offset.h",
"painting/Paint.cpp",
"painting/Paint.h",
"painting/PaintingCallback.cpp",
@@ -875,18 +877,18 @@ sky_core_files = [
"painting/PictureRecorder.h",
"painting/Point.cpp",
"painting/Point.h",
- "painting/Rect.cpp",
- "painting/Rect.h",
"painting/RRect.cpp",
"painting/RRect.h",
+ "painting/Rect.cpp",
+ "painting/Rect.h",
"painting/Shader.cpp",
"painting/Shader.h",
+ "painting/Size.cpp",
+ "painting/Size.h",
"painting/TransferMode.h",
"rendering/BidiRun.h",
"rendering/BidiRunForLine.cpp",
"rendering/BidiRunForLine.h",
- "rendering/break_lines.cpp",
- "rendering/break_lines.h",
"rendering/ClipPathOperation.h",
"rendering/ClipRect.cpp",
"rendering/ClipRect.h",
@@ -897,13 +899,13 @@ sky_core_files = [
"rendering/FilterEffectRenderer.cpp",
"rendering/FilterEffectRenderer.h",
"rendering/GapRects.h",
- "rendering/HitTestingTransformState.cpp",
- "rendering/HitTestingTransformState.h",
"rendering/HitTestLocation.cpp",
"rendering/HitTestLocation.h",
"rendering/HitTestRequest.h",
"rendering/HitTestResult.cpp",
"rendering/HitTestResult.h",
+ "rendering/HitTestingTransformState.cpp",
+ "rendering/HitTestingTransformState.h",
"rendering/InlineBox.cpp",
"rendering/InlineBox.h",
"rendering/InlineFlowBox.cpp",
@@ -912,18 +914,6 @@ sky_core_files = [
"rendering/InlineTextBox.cpp",
"rendering/InlineTextBox.h",
"rendering/LayerPaintingInfo.h",
- "rendering/line/BreakingContext.cpp",
- "rendering/line/BreakingContextInlineHeaders.h",
- "rendering/line/LineBreaker.cpp",
- "rendering/line/LineBreaker.h",
- "rendering/line/LineInfo.h",
- "rendering/line/LineLayoutState.h",
- "rendering/line/LineWidth.cpp",
- "rendering/line/LineWidth.h",
- "rendering/line/RenderTextInfo.h",
- "rendering/line/TrailingObjects.cpp",
- "rendering/line/TrailingObjects.h",
- "rendering/line/WordMeasurement.h",
"rendering/OrderIterator.cpp",
"rendering/OrderIterator.h",
"rendering/PaintInfo.h",
@@ -984,6 +974,25 @@ sky_core_files = [
"rendering/RootInlineBox.h",
"rendering/ScrollAlignment.cpp",
"rendering/ScrollAlignment.h",
+ "rendering/SubtreeLayoutScope.cpp",
+ "rendering/SubtreeLayoutScope.h",
+ "rendering/TextRunConstructor.cpp",
+ "rendering/TextRunConstructor.h",
+ "rendering/VerticalPositionCache.h",
+ "rendering/break_lines.cpp",
+ "rendering/break_lines.h",
+ "rendering/line/BreakingContext.cpp",
+ "rendering/line/BreakingContextInlineHeaders.h",
+ "rendering/line/LineBreaker.cpp",
+ "rendering/line/LineBreaker.h",
+ "rendering/line/LineInfo.h",
+ "rendering/line/LineLayoutState.h",
+ "rendering/line/LineWidth.cpp",
+ "rendering/line/LineWidth.h",
+ "rendering/line/RenderTextInfo.h",
+ "rendering/line/TrailingObjects.cpp",
+ "rendering/line/TrailingObjects.h",
+ "rendering/line/WordMeasurement.h",
"rendering/style/AppliedTextDecoration.cpp",
"rendering/style/AppliedTextDecoration.h",
"rendering/style/BasicShapes.cpp",
@@ -1043,11 +1052,6 @@ sky_core_files = [
"rendering/style/StyleVisualData.h",
"rendering/style/StyleWillChangeData.cpp",
"rendering/style/StyleWillChangeData.h",
- "rendering/SubtreeLayoutScope.cpp",
- "rendering/SubtreeLayoutScope.h",
- "rendering/TextRunConstructor.cpp",
- "rendering/TextRunConstructor.h",
- "rendering/VerticalPositionCache.h",
"script/dart_controller.cc",
"script/dart_controller.h",
"script/dart_debugger.cc",
@@ -1077,19 +1081,17 @@ core_idl_files = get_path_info([
"css/CSSStyleDeclaration.idl",
"css/FontFace.idl",
"css/FontFaceSet.idl",
-
- # "css/FontFaceSetLoadEvent.idl",
"css/MediaQueryList.idl",
"css/MediaQueryListEvent.idl",
"dom/Attr.idl",
"dom/CharacterData.idl",
"dom/ClientRect.idl",
"dom/ClientRectList.idl",
- "dom/Document.idl",
- "dom/DocumentFragment.idl",
"dom/DOMError.idl",
"dom/DOMException.idl",
"dom/DOMTokenList.idl",
+ "dom/Document.idl",
+ "dom/DocumentFragment.idl",
"dom/Element.idl",
"dom/MutationObserver.idl",
"dom/MutationRecord.idl",
@@ -1098,9 +1100,9 @@ core_idl_files = get_path_info([
"dom/ParentNode.idl",
"dom/Range.idl",
"dom/RequestAnimationFrameCallback.idl",
- "dom/shadow/ShadowRoot.idl",
"dom/Text.idl",
"dom/URL.idl",
+ "dom/shadow/ShadowRoot.idl",
"editing/Selection.idl",
"events/AnimationEvent.idl",
"events/AnimationPlayerEvent.idl",
@@ -1131,9 +1133,9 @@ core_idl_files = get_path_info([
"html/HTMLImportElement.idl",
"html/HTMLScriptElement.idl",
"html/HTMLStyleElement.idl",
+ "html/HTMLTElement.idl",
"html/HTMLTemplateElement.idl",
"html/HTMLTitleElement.idl",
- "html/HTMLTElement.idl",
"html/ImageData.idl",
"html/TextMetrics.idl",
"html/VoidCallback.idl",
@@ -1168,6 +1170,8 @@ core_dart_files = get_path_info([
"painting/DrawLooperLayerInfo.dart",
"painting/Gradient.dart",
"painting/MaskFilter.dart",
+ "painting/Offset.dart",
+ "painting/OffsetBase.dart",
"painting/PaintingStyle.dart",
"painting/Point.dart",
"painting/Rect.dart",
« no previous file with comments | « sky/engine/bindings/scripts/templates/interface_dart.template ('k') | sky/engine/core/painting/Canvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698