| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "ObjectPaintProperties.h", | 97 "ObjectPaintProperties.h", |
| 98 "ObjectPainter.cpp", | 98 "ObjectPainter.cpp", |
| 99 "ObjectPainter.h", | 99 "ObjectPainter.h", |
| 100 "PaintInfo.cpp", | 100 "PaintInfo.cpp", |
| 101 "PaintInfo.h", | 101 "PaintInfo.h", |
| 102 "PaintInvalidationCapableScrollableArea.cpp", | 102 "PaintInvalidationCapableScrollableArea.cpp", |
| 103 "PaintInvalidationCapableScrollableArea.h", | 103 "PaintInvalidationCapableScrollableArea.h", |
| 104 "PaintInvalidator.cpp", | 104 "PaintInvalidator.cpp", |
| 105 "PaintInvalidator.h", | 105 "PaintInvalidator.h", |
| 106 "PaintLayer.cpp", | 106 "PaintLayer.cpp", |
| 107 "PaintLayer.h", |
| 107 "PaintLayerClipper.cpp", | 108 "PaintLayerClipper.cpp", |
| 109 "PaintLayerClipper.h", |
| 108 "PaintLayerFragment.h", | 110 "PaintLayerFragment.h", |
| 109 "PaintLayerPainter.cpp", | 111 "PaintLayerPainter.cpp", |
| 110 "PaintLayerPainter.h", | 112 "PaintLayerPainter.h", |
| 111 "PaintLayerPaintingInfo.h", | 113 "PaintLayerPaintingInfo.h", |
| 112 "PaintLayerResourceInfo.cpp", | 114 "PaintLayerResourceInfo.cpp", |
| 113 "PaintLayerResourceInfo.h", | 115 "PaintLayerResourceInfo.h", |
| 114 "PaintLayerScrollableArea.cpp", | 116 "PaintLayerScrollableArea.cpp", |
| 117 "PaintLayerScrollableArea.h", |
| 115 "PaintLayerStackingNode.cpp", | 118 "PaintLayerStackingNode.cpp", |
| 119 "PaintLayerStackingNode.h", |
| 116 "PaintLayerStackingNodeIterator.cpp", | 120 "PaintLayerStackingNodeIterator.cpp", |
| 121 "PaintLayerStackingNodeIterator.h", |
| 117 "PaintPhase.cpp", | 122 "PaintPhase.cpp", |
| 118 "PaintPhase.h", | 123 "PaintPhase.h", |
| 119 "PaintPropertyTreeBuilder.cpp", | 124 "PaintPropertyTreeBuilder.cpp", |
| 120 "PaintPropertyTreeBuilder.h", | 125 "PaintPropertyTreeBuilder.h", |
| 121 "PaintPropertyTreePrinter.cpp", | 126 "PaintPropertyTreePrinter.cpp", |
| 122 "PaintPropertyTreePrinter.h", | 127 "PaintPropertyTreePrinter.h", |
| 123 "PaintTiming.cpp", | 128 "PaintTiming.cpp", |
| 124 "PaintTiming.h", | 129 "PaintTiming.h", |
| 125 "PartPainter.cpp", | 130 "PartPainter.cpp", |
| 126 "PartPainter.h", | 131 "PartPainter.h", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 "ViewPaintInvalidator.h", | 197 "ViewPaintInvalidator.h", |
| 193 "ViewPainter.cpp", | 198 "ViewPainter.cpp", |
| 194 "ViewPainter.h", | 199 "ViewPainter.h", |
| 195 ] | 200 ] |
| 196 | 201 |
| 197 configs += [ | 202 configs += [ |
| 198 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 203 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 199 "//build/config/compiler:no_size_t_to_int_warning", | 204 "//build/config/compiler:no_size_t_to_int_warning", |
| 200 ] | 205 ] |
| 201 } | 206 } |
| OLD | NEW |