| 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 "TablePaintInvalidator.cpp", | 165 "TablePaintInvalidator.cpp", |
| 166 "TablePaintInvalidator.h", | 166 "TablePaintInvalidator.h", |
| 167 "TablePainter.cpp", | 167 "TablePainter.cpp", |
| 168 "TablePainter.h", | 168 "TablePainter.h", |
| 169 "TableRowPainter.cpp", | 169 "TableRowPainter.cpp", |
| 170 "TableRowPainter.h", | 170 "TableRowPainter.h", |
| 171 "TableSectionPainter.cpp", | 171 "TableSectionPainter.cpp", |
| 172 "TableSectionPainter.h", | 172 "TableSectionPainter.h", |
| 173 "TextPainter.cpp", | 173 "TextPainter.cpp", |
| 174 "TextPainter.h", | 174 "TextPainter.h", |
| 175 "ThemePainter.cpp", | 175 #"ThemePainter.cpp", |
| 176 "ThemePainter.h", | 176 #"ThemePainter.h", |
| 177 "ThemePainterDefault.cpp", | 177 #"ThemePainterDefault.cpp", |
| 178 "ThemePainterDefault.h", | 178 #"ThemePainterDefault.h", |
| 179 "ThemePainterMac.h", | 179 #"ThemePainterMac.h", |
| 180 "ThemePainterMac.mm", | 180 #"ThemePainterMac.mm", |
| 181 "Transform3DRecorder.cpp", | 181 "Transform3DRecorder.cpp", |
| 182 "Transform3DRecorder.h", | 182 "Transform3DRecorder.h", |
| 183 "TransformRecorder.cpp", | 183 "TransformRecorder.cpp", |
| 184 "TransformRecorder.h", | 184 "TransformRecorder.h", |
| 185 "VideoPainter.cpp", | 185 "VideoPainter.cpp", |
| 186 "VideoPainter.h", | 186 "VideoPainter.h", |
| 187 "ViewPainter.cpp", | 187 "ViewPainter.cpp", |
| 188 "ViewPainter.h", | 188 "ViewPainter.h", |
| 189 ] | 189 ] |
| 190 | 190 |
| 191 configs += [ | 191 configs += [ |
| 192 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 192 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 193 "//build/config/compiler:no_size_t_to_int_warning", | 193 "//build/config/compiler:no_size_t_to_int_warning", |
| 194 ] | 194 ] |
| 195 } | 195 } |
| OLD | NEW |