| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 "PartPainter.cpp", | 125 "PartPainter.cpp", |
| 126 "PartPainter.h", | 126 "PartPainter.h", |
| 127 "PrePaintTreeWalk.cpp", | 127 "PrePaintTreeWalk.cpp", |
| 128 "PrePaintTreeWalk.h", | 128 "PrePaintTreeWalk.h", |
| 129 "ReplacedPainter.cpp", | 129 "ReplacedPainter.cpp", |
| 130 "ReplacedPainter.h", | 130 "ReplacedPainter.h", |
| 131 "RootInlineBoxPainter.cpp", | 131 "RootInlineBoxPainter.cpp", |
| 132 "RootInlineBoxPainter.h", | 132 "RootInlineBoxPainter.h", |
| 133 "RoundedInnerRectClipper.cpp", | 133 "RoundedInnerRectClipper.cpp", |
| 134 "RoundedInnerRectClipper.h", | 134 "RoundedInnerRectClipper.h", |
| 135 "SVGClipPainter.cpp", | |
| 136 "SVGClipPainter.h", | |
| 137 "SVGContainerPainter.cpp", | 135 "SVGContainerPainter.cpp", |
| 138 "SVGContainerPainter.h", | 136 "SVGContainerPainter.h", |
| 139 "SVGFilterPainter.cpp", | 137 "SVGFilterPainter.cpp", |
| 140 "SVGFilterPainter.h", | 138 "SVGFilterPainter.h", |
| 141 "SVGForeignObjectPainter.cpp", | 139 "SVGForeignObjectPainter.cpp", |
| 142 "SVGForeignObjectPainter.h", | 140 "SVGForeignObjectPainter.h", |
| 143 "SVGImagePainter.cpp", | 141 "SVGImagePainter.cpp", |
| 144 "SVGImagePainter.h", | 142 "SVGImagePainter.h", |
| 145 "SVGInlineFlowBoxPainter.cpp", | 143 "SVGInlineFlowBoxPainter.cpp", |
| 146 "SVGInlineFlowBoxPainter.h", | 144 "SVGInlineFlowBoxPainter.h", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 "ViewPaintInvalidator.h", | 192 "ViewPaintInvalidator.h", |
| 195 "ViewPainter.cpp", | 193 "ViewPainter.cpp", |
| 196 "ViewPainter.h", | 194 "ViewPainter.h", |
| 197 ] | 195 ] |
| 198 | 196 |
| 199 configs += [ | 197 configs += [ |
| 200 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 198 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 201 "//build/config/compiler:no_size_t_to_int_warning", | 199 "//build/config/compiler:no_size_t_to_int_warning", |
| 202 ] | 200 ] |
| 203 } | 201 } |
| OLD | NEW |