| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 "TransformRecorder.cpp", | 195 "TransformRecorder.cpp", |
| 196 "TransformRecorder.h", | 196 "TransformRecorder.h", |
| 197 "VideoPainter.cpp", | 197 "VideoPainter.cpp", |
| 198 "VideoPainter.h", | 198 "VideoPainter.h", |
| 199 "ViewPaintInvalidator.cpp", | 199 "ViewPaintInvalidator.cpp", |
| 200 "ViewPaintInvalidator.h", | 200 "ViewPaintInvalidator.h", |
| 201 "ViewPainter.cpp", | 201 "ViewPainter.cpp", |
| 202 "ViewPainter.h", | 202 "ViewPainter.h", |
| 203 ] | 203 ] |
| 204 | 204 |
| 205 jumbo_excluded_sources = [ |
| 206 # Collides with BoxBorderPainter (patch incoming) |
| 207 "BoxPainter.cpp", |
| 208 ] |
| 209 |
| 205 configs += [ | 210 configs += [ |
| 206 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 211 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 207 "//build/config/compiler:no_size_t_to_int_warning", | 212 "//build/config/compiler:no_size_t_to_int_warning", |
| 208 ] | 213 ] |
| 209 } | 214 } |
| OLD | NEW |