| 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 "AppliedDecorationPainter.cpp", | 10 "AppliedDecorationPainter.cpp", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "LineBoxListPainter.cpp", | 89 "LineBoxListPainter.cpp", |
| 90 "LineBoxListPainter.h", | 90 "LineBoxListPainter.h", |
| 91 "ListItemPainter.cpp", | 91 "ListItemPainter.cpp", |
| 92 "ListItemPainter.h", | 92 "ListItemPainter.h", |
| 93 "ListMarkerPainter.cpp", | 93 "ListMarkerPainter.cpp", |
| 94 "ListMarkerPainter.h", | 94 "ListMarkerPainter.h", |
| 95 "MediaControlsPainter.cpp", | 95 "MediaControlsPainter.cpp", |
| 96 "MediaControlsPainter.h", | 96 "MediaControlsPainter.h", |
| 97 "MultiColumnSetPainter.cpp", | 97 "MultiColumnSetPainter.cpp", |
| 98 "MultiColumnSetPainter.h", | 98 "MultiColumnSetPainter.h", |
| 99 "NGBlockFlowPainter.cpp", |
| 100 "NGBlockFlowPainter.h", |
| 101 "NGBoxFragmentPainter.cpp", |
| 102 "NGBoxFragmentPainter.h", |
| 103 "NGTextFragmentPainter.cpp", |
| 104 "NGTextFragmentPainter.h", |
| 105 "NGTextPainter.cpp", |
| 106 "NGTextPainter.h", |
| 99 "NinePieceImageGrid.cpp", | 107 "NinePieceImageGrid.cpp", |
| 100 "NinePieceImageGrid.h", | 108 "NinePieceImageGrid.h", |
| 101 "NinePieceImagePainter.cpp", | 109 "NinePieceImagePainter.cpp", |
| 102 "NinePieceImagePainter.h", | 110 "NinePieceImagePainter.h", |
| 103 "ObjectPaintInvalidator.cpp", | 111 "ObjectPaintInvalidator.cpp", |
| 104 "ObjectPaintInvalidator.h", | 112 "ObjectPaintInvalidator.h", |
| 105 "ObjectPaintProperties.h", | 113 "ObjectPaintProperties.h", |
| 106 "ObjectPainter.cpp", | 114 "ObjectPainter.cpp", |
| 107 "ObjectPainter.h", | 115 "ObjectPainter.h", |
| 108 "PaintInfo.h", | 116 "PaintInfo.h", |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 "ViewPaintInvalidator.h", | 219 "ViewPaintInvalidator.h", |
| 212 "ViewPainter.cpp", | 220 "ViewPainter.cpp", |
| 213 "ViewPainter.h", | 221 "ViewPainter.h", |
| 214 ] | 222 ] |
| 215 | 223 |
| 216 configs += [ | 224 configs += [ |
| 217 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 225 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 218 "//build/config/compiler:no_size_t_to_int_warning", | 226 "//build/config/compiler:no_size_t_to_int_warning", |
| 219 ] | 227 ] |
| 220 } | 228 } |
| OLD | NEW |