| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "ObjectPainter.cpp", | 94 "ObjectPainter.cpp", |
| 95 "ObjectPainter.h", | 95 "ObjectPainter.h", |
| 96 "PaintInfo.cpp", | 96 "PaintInfo.cpp", |
| 97 "PaintInfo.h", | 97 "PaintInfo.h", |
| 98 "PaintInvalidationCapableScrollableArea.cpp", | 98 "PaintInvalidationCapableScrollableArea.cpp", |
| 99 "PaintInvalidationCapableScrollableArea.h", | 99 "PaintInvalidationCapableScrollableArea.h", |
| 100 "PaintInvalidator.cpp", | 100 "PaintInvalidator.cpp", |
| 101 "PaintInvalidator.h", | 101 "PaintInvalidator.h", |
| 102 "PaintLayer.cpp", | 102 "PaintLayer.cpp", |
| 103 "PaintLayerClipper.cpp", | 103 "PaintLayerClipper.cpp", |
| 104 "PaintLayerFilterInfo.cpp", | |
| 105 "PaintLayerFilterInfo.h", | |
| 106 "PaintLayerFragment.h", | 104 "PaintLayerFragment.h", |
| 107 "PaintLayerPainter.cpp", | 105 "PaintLayerPainter.cpp", |
| 108 "PaintLayerPainter.h", | 106 "PaintLayerPainter.h", |
| 109 "PaintLayerPaintingInfo.h", | 107 "PaintLayerPaintingInfo.h", |
| 108 "PaintLayerResourceInfo.cpp", |
| 109 "PaintLayerResourceInfo.h", |
| 110 "PaintLayerScrollableArea.cpp", | 110 "PaintLayerScrollableArea.cpp", |
| 111 "PaintLayerStackingNode.cpp", | 111 "PaintLayerStackingNode.cpp", |
| 112 "PaintLayerStackingNodeIterator.cpp", | 112 "PaintLayerStackingNodeIterator.cpp", |
| 113 "PaintPhase.cpp", | 113 "PaintPhase.cpp", |
| 114 "PaintPhase.h", | 114 "PaintPhase.h", |
| 115 "PaintPropertyTreeBuilder.cpp", | 115 "PaintPropertyTreeBuilder.cpp", |
| 116 "PaintPropertyTreeBuilder.h", | 116 "PaintPropertyTreeBuilder.h", |
| 117 "PaintPropertyTreePrinter.cpp", | 117 "PaintPropertyTreePrinter.cpp", |
| 118 "PaintPropertyTreePrinter.h", | 118 "PaintPropertyTreePrinter.h", |
| 119 "PaintTiming.cpp", | 119 "PaintTiming.cpp", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 "VideoPainter.h", | 188 "VideoPainter.h", |
| 189 "ViewPainter.cpp", | 189 "ViewPainter.cpp", |
| 190 "ViewPainter.h", | 190 "ViewPainter.h", |
| 191 ] | 191 ] |
| 192 | 192 |
| 193 configs += [ | 193 configs += [ |
| 194 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 194 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 195 "//build/config/compiler:no_size_t_to_int_warning", | 195 "//build/config/compiler:no_size_t_to_int_warning", |
| 196 ] | 196 ] |
| 197 } | 197 } |
| OLD | NEW |