| 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 171 "ScrollbarManager.cpp", |
| 172 "ScrollbarManager.h", | 172 "ScrollbarManager.h", |
| 173 "ScrollbarPainter.cpp", | 173 "ScrollbarPainter.cpp", |
| 174 "ScrollbarPainter.h", | 174 "ScrollbarPainter.h", |
| 175 "TableCellPainter.cpp", | 175 "TableCellPainter.cpp", |
| 176 "TableCellPainter.h", | 176 "TableCellPainter.h", |
| 177 "TableCollapsedBorderPainter.cpp", |
| 178 "TableCollapsedBorderPainter.h", |
| 177 "TablePaintInvalidator.cpp", | 179 "TablePaintInvalidator.cpp", |
| 178 "TablePaintInvalidator.h", | 180 "TablePaintInvalidator.h", |
| 179 "TablePainter.cpp", | 181 "TablePainter.cpp", |
| 180 "TablePainter.h", | 182 "TablePainter.h", |
| 181 "TableRowPainter.cpp", | 183 "TableRowPainter.cpp", |
| 182 "TableRowPainter.h", | 184 "TableRowPainter.h", |
| 183 "TableSectionPainter.cpp", | 185 "TableSectionPainter.cpp", |
| 184 "TableSectionPainter.h", | 186 "TableSectionPainter.h", |
| 185 "TextPainter.cpp", | 187 "TextPainter.cpp", |
| 186 "TextPainter.h", | 188 "TextPainter.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 205 jumbo_excluded_sources = [ | 207 jumbo_excluded_sources = [ |
| 206 # Collides with BoxBorderPainter (patch incoming) | 208 # Collides with BoxBorderPainter (patch incoming) |
| 207 "BoxPainter.cpp", | 209 "BoxPainter.cpp", |
| 208 ] | 210 ] |
| 209 | 211 |
| 210 configs += [ | 212 configs += [ |
| 211 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 213 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 212 "//build/config/compiler:no_size_t_to_int_warning", | 214 "//build/config/compiler:no_size_t_to_int_warning", |
| 213 ] | 215 ] |
| 214 } | 216 } |
| OLD | NEW |