| 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 17 matching lines...) Expand all Loading... |
| 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 "DetailsMarkerPainter.cpp", | 34 "DetailsMarkerPainter.cpp", |
| 35 "DetailsMarkerPainter.h", | 35 "DetailsMarkerPainter.h", |
| 36 "EllipsisBoxPainter.cpp", | 36 "EllipsisBoxPainter.cpp", |
| 37 "EllipsisBoxPainter.h", | 37 "EllipsisBoxPainter.h", |
| 38 "EmbeddedObjectPaintInvalidator.cpp", |
| 39 "EmbeddedObjectPaintInvalidator.h", |
| 38 "EmbeddedObjectPainter.cpp", | 40 "EmbeddedObjectPainter.cpp", |
| 39 "EmbeddedObjectPainter.h", | 41 "EmbeddedObjectPainter.h", |
| 40 "FieldsetPainter.cpp", | 42 "FieldsetPainter.cpp", |
| 41 "FieldsetPainter.h", | 43 "FieldsetPainter.h", |
| 42 "FileUploadControlPainter.cpp", | 44 "FileUploadControlPainter.cpp", |
| 43 "FileUploadControlPainter.h", | 45 "FileUploadControlPainter.h", |
| 44 "FilterEffectBuilder.cpp", | 46 "FilterEffectBuilder.cpp", |
| 45 "FilterEffectBuilder.h", | 47 "FilterEffectBuilder.h", |
| 46 "FilterPainter.cpp", | 48 "FilterPainter.cpp", |
| 47 "FilterPainter.h", | 49 "FilterPainter.h", |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 "VideoPainter.h", | 187 "VideoPainter.h", |
| 186 "ViewPainter.cpp", | 188 "ViewPainter.cpp", |
| 187 "ViewPainter.h", | 189 "ViewPainter.h", |
| 188 ] | 190 ] |
| 189 | 191 |
| 190 configs += [ | 192 configs += [ |
| 191 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 193 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 192 "//build/config/compiler:no_size_t_to_int_warning", | 194 "//build/config/compiler:no_size_t_to_int_warning", |
| 193 ] | 195 ] |
| 194 } | 196 } |
| OLD | NEW |