| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//third_party/WebKit/Source/core/core.gni") | 5 import("//third_party/WebKit/Source/core/core.gni") |
| 6 | 6 |
| 7 blink_core_sources("paint") { | 7 blink_core_sources("paint") { |
| 8 split_count = 2 | 8 split_count = 2 |
| 9 sources = [ | 9 sources = [ |
| 10 "BackgroundImageGeometry.cpp", | 10 "BackgroundImageGeometry.cpp", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "ImagePainter.cpp", | 69 "ImagePainter.cpp", |
| 70 "ImagePainter.h", | 70 "ImagePainter.h", |
| 71 "InlineFlowBoxPainter.cpp", | 71 "InlineFlowBoxPainter.cpp", |
| 72 "InlineFlowBoxPainter.h", | 72 "InlineFlowBoxPainter.h", |
| 73 "InlinePainter.cpp", | 73 "InlinePainter.cpp", |
| 74 "InlinePainter.h", | 74 "InlinePainter.h", |
| 75 "InlineTextBoxPainter.cpp", | 75 "InlineTextBoxPainter.cpp", |
| 76 "InlineTextBoxPainter.h", | 76 "InlineTextBoxPainter.h", |
| 77 "LayerClipRecorder.cpp", | 77 "LayerClipRecorder.cpp", |
| 78 "LayerClipRecorder.h", | 78 "LayerClipRecorder.h", |
| 79 "LayerHitTestRects.h", |
| 79 "LayoutObjectDrawingRecorder.h", | 80 "LayoutObjectDrawingRecorder.h", |
| 80 "LineBoxListPainter.cpp", | 81 "LineBoxListPainter.cpp", |
| 81 "LineBoxListPainter.h", | 82 "LineBoxListPainter.h", |
| 82 "ListItemPainter.cpp", | 83 "ListItemPainter.cpp", |
| 83 "ListItemPainter.h", | 84 "ListItemPainter.h", |
| 84 "ListMarkerPainter.cpp", | 85 "ListMarkerPainter.cpp", |
| 85 "ListMarkerPainter.h", | 86 "ListMarkerPainter.h", |
| 86 "MediaControlsPainter.cpp", | 87 "MediaControlsPainter.cpp", |
| 87 "MediaControlsPainter.h", | 88 "MediaControlsPainter.h", |
| 88 "MultiColumnSetPainter.cpp", | 89 "MultiColumnSetPainter.cpp", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 118 "PaintLayerStackingNode.cpp", | 119 "PaintLayerStackingNode.cpp", |
| 119 "PaintLayerStackingNode.h", | 120 "PaintLayerStackingNode.h", |
| 120 "PaintLayerStackingNodeIterator.cpp", | 121 "PaintLayerStackingNodeIterator.cpp", |
| 121 "PaintLayerStackingNodeIterator.h", | 122 "PaintLayerStackingNodeIterator.h", |
| 122 "PaintPhase.cpp", | 123 "PaintPhase.cpp", |
| 123 "PaintPhase.h", | 124 "PaintPhase.h", |
| 124 "PaintPropertyTreeBuilder.cpp", | 125 "PaintPropertyTreeBuilder.cpp", |
| 125 "PaintPropertyTreeBuilder.h", | 126 "PaintPropertyTreeBuilder.h", |
| 126 "PaintPropertyTreePrinter.cpp", | 127 "PaintPropertyTreePrinter.cpp", |
| 127 "PaintPropertyTreePrinter.h", | 128 "PaintPropertyTreePrinter.h", |
| 129 "PaintResult.h", |
| 128 "PaintTiming.cpp", | 130 "PaintTiming.cpp", |
| 129 "PaintTiming.h", | 131 "PaintTiming.h", |
| 130 "PartPainter.cpp", | 132 "PartPainter.cpp", |
| 131 "PartPainter.h", | 133 "PartPainter.h", |
| 132 "PrePaintTreeWalk.cpp", | 134 "PrePaintTreeWalk.cpp", |
| 133 "PrePaintTreeWalk.h", | 135 "PrePaintTreeWalk.h", |
| 134 "ReplacedPainter.cpp", | 136 "ReplacedPainter.cpp", |
| 135 "ReplacedPainter.h", | 137 "ReplacedPainter.h", |
| 136 "RootInlineBoxPainter.cpp", | 138 "RootInlineBoxPainter.cpp", |
| 137 "RootInlineBoxPainter.h", | 139 "RootInlineBoxPainter.h", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 "ViewPaintInvalidator.h", | 199 "ViewPaintInvalidator.h", |
| 198 "ViewPainter.cpp", | 200 "ViewPainter.cpp", |
| 199 "ViewPainter.h", | 201 "ViewPainter.h", |
| 200 ] | 202 ] |
| 201 | 203 |
| 202 configs += [ | 204 configs += [ |
| 203 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 205 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 204 "//build/config/compiler:no_size_t_to_int_warning", | 206 "//build/config/compiler:no_size_t_to_int_warning", |
| 205 ] | 207 ] |
| 206 } | 208 } |
| OLD | NEW |