| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 "SVGRootPainter.cpp", | 161 "SVGRootPainter.cpp", |
| 162 "SVGRootPainter.h", | 162 "SVGRootPainter.h", |
| 163 "SVGShapePainter.cpp", | 163 "SVGShapePainter.cpp", |
| 164 "SVGShapePainter.h", | 164 "SVGShapePainter.h", |
| 165 "SVGTextPainter.cpp", | 165 "SVGTextPainter.cpp", |
| 166 "SVGTextPainter.h", | 166 "SVGTextPainter.h", |
| 167 "ScrollRecorder.cpp", | 167 "ScrollRecorder.cpp", |
| 168 "ScrollRecorder.h", | 168 "ScrollRecorder.h", |
| 169 "ScrollableAreaPainter.cpp", | 169 "ScrollableAreaPainter.cpp", |
| 170 "ScrollableAreaPainter.h", | 170 "ScrollableAreaPainter.h", |
| 171 "ScrollbarManager.cpp", | |
| 172 "ScrollbarManager.h", | |
| 173 "ScrollbarPainter.cpp", | 171 "ScrollbarPainter.cpp", |
| 174 "ScrollbarPainter.h", | 172 "ScrollbarPainter.h", |
| 175 "TableCellPainter.cpp", | 173 "TableCellPainter.cpp", |
| 176 "TableCellPainter.h", | 174 "TableCellPainter.h", |
| 177 "TablePaintInvalidator.cpp", | 175 "TablePaintInvalidator.cpp", |
| 178 "TablePaintInvalidator.h", | 176 "TablePaintInvalidator.h", |
| 179 "TablePainter.cpp", | 177 "TablePainter.cpp", |
| 180 "TablePainter.h", | 178 "TablePainter.h", |
| 181 "TableRowPainter.cpp", | 179 "TableRowPainter.cpp", |
| 182 "TableRowPainter.h", | 180 "TableRowPainter.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 200 "ViewPaintInvalidator.h", | 198 "ViewPaintInvalidator.h", |
| 201 "ViewPainter.cpp", | 199 "ViewPainter.cpp", |
| 202 "ViewPainter.h", | 200 "ViewPainter.h", |
| 203 ] | 201 ] |
| 204 | 202 |
| 205 configs += [ | 203 configs += [ |
| 206 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 204 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 207 "//build/config/compiler:no_size_t_to_int_warning", | 205 "//build/config/compiler:no_size_t_to_int_warning", |
| 208 ] | 206 ] |
| 209 } | 207 } |
| OLD | NEW |