| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "MediaControlsPainter.cpp", | 87 "MediaControlsPainter.cpp", |
| 88 "MediaControlsPainter.h", | 88 "MediaControlsPainter.h", |
| 89 "MultiColumnSetPainter.cpp", | 89 "MultiColumnSetPainter.cpp", |
| 90 "MultiColumnSetPainter.h", | 90 "MultiColumnSetPainter.h", |
| 91 "NinePieceImageGrid.cpp", | 91 "NinePieceImageGrid.cpp", |
| 92 "NinePieceImageGrid.h", | 92 "NinePieceImageGrid.h", |
| 93 "NinePieceImagePainter.cpp", | 93 "NinePieceImagePainter.cpp", |
| 94 "NinePieceImagePainter.h", | 94 "NinePieceImagePainter.h", |
| 95 "ObjectPaintInvalidator.cpp", | 95 "ObjectPaintInvalidator.cpp", |
| 96 "ObjectPaintInvalidator.h", | 96 "ObjectPaintInvalidator.h", |
| 97 "ObjectPaintProperties.cpp", | |
| 98 "ObjectPaintProperties.h", | 97 "ObjectPaintProperties.h", |
| 99 "ObjectPainter.cpp", | 98 "ObjectPainter.cpp", |
| 100 "ObjectPainter.h", | 99 "ObjectPainter.h", |
| 101 "PaintInfo.cpp", | 100 "PaintInfo.cpp", |
| 102 "PaintInfo.h", | 101 "PaintInfo.h", |
| 103 "PaintInvalidationCapableScrollableArea.cpp", | 102 "PaintInvalidationCapableScrollableArea.cpp", |
| 104 "PaintInvalidationCapableScrollableArea.h", | 103 "PaintInvalidationCapableScrollableArea.h", |
| 105 "PaintInvalidator.cpp", | 104 "PaintInvalidator.cpp", |
| 106 "PaintInvalidator.h", | 105 "PaintInvalidator.h", |
| 107 "PaintLayer.cpp", | 106 "PaintLayer.cpp", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 126 "PaintPropertyTreeBuilder.h", | 125 "PaintPropertyTreeBuilder.h", |
| 127 "PaintPropertyTreePrinter.cpp", | 126 "PaintPropertyTreePrinter.cpp", |
| 128 "PaintPropertyTreePrinter.h", | 127 "PaintPropertyTreePrinter.h", |
| 129 "PaintResult.h", | 128 "PaintResult.h", |
| 130 "PaintTiming.cpp", | 129 "PaintTiming.cpp", |
| 131 "PaintTiming.h", | 130 "PaintTiming.h", |
| 132 "PartPainter.cpp", | 131 "PartPainter.cpp", |
| 133 "PartPainter.h", | 132 "PartPainter.h", |
| 134 "PrePaintTreeWalk.cpp", | 133 "PrePaintTreeWalk.cpp", |
| 135 "PrePaintTreeWalk.h", | 134 "PrePaintTreeWalk.h", |
| 135 "RarePaintData.cpp", |
| 136 "RarePaintData.h", |
| 136 "ReplacedPainter.cpp", | 137 "ReplacedPainter.cpp", |
| 137 "ReplacedPainter.h", | 138 "ReplacedPainter.h", |
| 138 "RootInlineBoxPainter.cpp", | 139 "RootInlineBoxPainter.cpp", |
| 139 "RootInlineBoxPainter.h", | 140 "RootInlineBoxPainter.h", |
| 140 "RoundedInnerRectClipper.cpp", | 141 "RoundedInnerRectClipper.cpp", |
| 141 "RoundedInnerRectClipper.h", | 142 "RoundedInnerRectClipper.h", |
| 142 "SVGContainerPainter.cpp", | 143 "SVGContainerPainter.cpp", |
| 143 "SVGContainerPainter.h", | 144 "SVGContainerPainter.h", |
| 144 "SVGFilterPainter.cpp", | 145 "SVGFilterPainter.cpp", |
| 145 "SVGFilterPainter.h", | 146 "SVGFilterPainter.h", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 "ViewPaintInvalidator.h", | 200 "ViewPaintInvalidator.h", |
| 200 "ViewPainter.cpp", | 201 "ViewPainter.cpp", |
| 201 "ViewPainter.h", | 202 "ViewPainter.h", |
| 202 ] | 203 ] |
| 203 | 204 |
| 204 configs += [ | 205 configs += [ |
| 205 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 206 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 206 "//build/config/compiler:no_size_t_to_int_warning", | 207 "//build/config/compiler:no_size_t_to_int_warning", |
| 207 ] | 208 ] |
| 208 } | 209 } |
| OLD | NEW |