| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 171 "ScrollbarManager.cpp", |
| 172 "ScrollbarManager.h", | 172 "ScrollbarManager.h", |
| 173 "ScrollbarPainter.cpp", | 173 "ScrollbarPainter.cpp", |
| 174 "ScrollbarPainter.h", | 174 "ScrollbarPainter.h", |
| 175 "TableCellPaintInvalidator.cpp", |
| 176 "TableCellPaintInvalidator.h", |
| 175 "TableCellPainter.cpp", | 177 "TableCellPainter.cpp", |
| 176 "TableCellPainter.h", | 178 "TableCellPainter.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", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 200 "ViewPaintInvalidator.h", | 202 "ViewPaintInvalidator.h", |
| 201 "ViewPainter.cpp", | 203 "ViewPainter.cpp", |
| 202 "ViewPainter.h", | 204 "ViewPainter.h", |
| 203 ] | 205 ] |
| 204 | 206 |
| 205 configs += [ | 207 configs += [ |
| 206 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 208 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 207 "//build/config/compiler:no_size_t_to_int_warning", | 209 "//build/config/compiler:no_size_t_to_int_warning", |
| 208 ] | 210 ] |
| 209 } | 211 } |
| OLD | NEW |