| 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 13 matching lines...) Expand all Loading... |
| 24 "BoxDecorationData.cpp", | 24 "BoxDecorationData.cpp", |
| 25 "BoxDecorationData.h", | 25 "BoxDecorationData.h", |
| 26 "BoxPaintInvalidator.cpp", | 26 "BoxPaintInvalidator.cpp", |
| 27 "BoxPaintInvalidator.h", | 27 "BoxPaintInvalidator.h", |
| 28 "BoxPainter.cpp", | 28 "BoxPainter.cpp", |
| 29 "BoxPainter.h", | 29 "BoxPainter.h", |
| 30 "BoxReflectionUtils.cpp", | 30 "BoxReflectionUtils.cpp", |
| 31 "BoxReflectionUtils.h", | 31 "BoxReflectionUtils.h", |
| 32 "ClipPathClipper.cpp", | 32 "ClipPathClipper.cpp", |
| 33 "ClipPathClipper.h", | 33 "ClipPathClipper.h", |
| 34 "ClipRect.cpp", |
| 35 "ClipRect.h", |
| 36 "ClipRects.h", |
| 37 "ClipRectsCache.h", |
| 34 "DetailsMarkerPainter.cpp", | 38 "DetailsMarkerPainter.cpp", |
| 35 "DetailsMarkerPainter.h", | 39 "DetailsMarkerPainter.h", |
| 36 "EllipsisBoxPainter.cpp", | 40 "EllipsisBoxPainter.cpp", |
| 37 "EllipsisBoxPainter.h", | 41 "EllipsisBoxPainter.h", |
| 38 "EmbeddedObjectPaintInvalidator.cpp", | 42 "EmbeddedObjectPaintInvalidator.cpp", |
| 39 "EmbeddedObjectPaintInvalidator.h", | 43 "EmbeddedObjectPaintInvalidator.h", |
| 40 "EmbeddedObjectPainter.cpp", | 44 "EmbeddedObjectPainter.cpp", |
| 41 "EmbeddedObjectPainter.h", | 45 "EmbeddedObjectPainter.h", |
| 42 "FieldsetPainter.cpp", | 46 "FieldsetPainter.cpp", |
| 43 "FieldsetPainter.h", | 47 "FieldsetPainter.h", |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 "VideoPainter.h", | 192 "VideoPainter.h", |
| 189 "ViewPainter.cpp", | 193 "ViewPainter.cpp", |
| 190 "ViewPainter.h", | 194 "ViewPainter.h", |
| 191 ] | 195 ] |
| 192 | 196 |
| 193 configs += [ | 197 configs += [ |
| 194 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 198 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 195 "//build/config/compiler:no_size_t_to_int_warning", | 199 "//build/config/compiler:no_size_t_to_int_warning", |
| 196 ] | 200 ] |
| 197 } | 201 } |
| OLD | NEW |