| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "PaintPropertyTreeBuilder.cpp", | 119 "PaintPropertyTreeBuilder.cpp", |
| 120 "PaintPropertyTreeBuilder.h", | 120 "PaintPropertyTreeBuilder.h", |
| 121 "PaintPropertyTreePrinter.cpp", | 121 "PaintPropertyTreePrinter.cpp", |
| 122 "PaintPropertyTreePrinter.h", | 122 "PaintPropertyTreePrinter.h", |
| 123 "PaintTiming.cpp", | 123 "PaintTiming.cpp", |
| 124 "PaintTiming.h", | 124 "PaintTiming.h", |
| 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 "RemoteFramePainter.cpp", |
| 129 "ReplacedPainter.cpp", | 130 "ReplacedPainter.cpp", |
| 130 "ReplacedPainter.h", | 131 "ReplacedPainter.h", |
| 131 "RootInlineBoxPainter.cpp", | 132 "RootInlineBoxPainter.cpp", |
| 132 "RootInlineBoxPainter.h", | 133 "RootInlineBoxPainter.h", |
| 133 "RoundedInnerRectClipper.cpp", | 134 "RoundedInnerRectClipper.cpp", |
| 134 "RoundedInnerRectClipper.h", | 135 "RoundedInnerRectClipper.h", |
| 135 "SVGClipPainter.cpp", | 136 "SVGClipPainter.cpp", |
| 136 "SVGClipPainter.h", | 137 "SVGClipPainter.h", |
| 137 "SVGContainerPainter.cpp", | 138 "SVGContainerPainter.cpp", |
| 138 "SVGContainerPainter.h", | 139 "SVGContainerPainter.h", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 "VideoPainter.h", | 193 "VideoPainter.h", |
| 193 "ViewPainter.cpp", | 194 "ViewPainter.cpp", |
| 194 "ViewPainter.h", | 195 "ViewPainter.h", |
| 195 ] | 196 ] |
| 196 | 197 |
| 197 configs += [ | 198 configs += [ |
| 198 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 199 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 199 "//build/config/compiler:no_size_t_to_int_warning", | 200 "//build/config/compiler:no_size_t_to_int_warning", |
| 200 ] | 201 ] |
| 201 } | 202 } |
| OLD | NEW |