| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 "SVGForeignObjectPainter.cpp", | 136 "SVGForeignObjectPainter.cpp", |
| 137 "SVGForeignObjectPainter.h", | 137 "SVGForeignObjectPainter.h", |
| 138 "SVGImagePainter.cpp", | 138 "SVGImagePainter.cpp", |
| 139 "SVGImagePainter.h", | 139 "SVGImagePainter.h", |
| 140 "SVGInlineFlowBoxPainter.cpp", | 140 "SVGInlineFlowBoxPainter.cpp", |
| 141 "SVGInlineFlowBoxPainter.h", | 141 "SVGInlineFlowBoxPainter.h", |
| 142 "SVGInlineTextBoxPainter.cpp", | 142 "SVGInlineTextBoxPainter.cpp", |
| 143 "SVGInlineTextBoxPainter.h", | 143 "SVGInlineTextBoxPainter.h", |
| 144 "SVGMaskPainter.cpp", | 144 "SVGMaskPainter.cpp", |
| 145 "SVGMaskPainter.h", | 145 "SVGMaskPainter.h", |
| 146 "SVGModelObjectPaintInvalidator.cpp", | |
| 147 "SVGModelObjectPaintInvalidator.h", | |
| 148 "SVGPaintContext.cpp", | 146 "SVGPaintContext.cpp", |
| 149 "SVGPaintContext.h", | 147 "SVGPaintContext.h", |
| 150 "SVGRootInlineBoxPainter.cpp", | 148 "SVGRootInlineBoxPainter.cpp", |
| 151 "SVGRootInlineBoxPainter.h", | 149 "SVGRootInlineBoxPainter.h", |
| 152 "SVGRootPainter.cpp", | 150 "SVGRootPainter.cpp", |
| 153 "SVGRootPainter.h", | 151 "SVGRootPainter.h", |
| 154 "SVGShapePainter.cpp", | 152 "SVGShapePainter.cpp", |
| 155 "SVGShapePainter.h", | 153 "SVGShapePainter.h", |
| 156 "SVGTextPainter.cpp", | 154 "SVGTextPainter.cpp", |
| 157 "SVGTextPainter.h", | 155 "SVGTextPainter.h", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 187 "VideoPainter.h", | 185 "VideoPainter.h", |
| 188 "ViewPainter.cpp", | 186 "ViewPainter.cpp", |
| 189 "ViewPainter.h", | 187 "ViewPainter.h", |
| 190 ] | 188 ] |
| 191 | 189 |
| 192 configs += [ | 190 configs += [ |
| 193 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 191 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 194 "//build/config/compiler:no_size_t_to_int_warning", | 192 "//build/config/compiler:no_size_t_to_int_warning", |
| 195 ] | 193 ] |
| 196 } | 194 } |
| OLD | NEW |