| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "PaintLayerPaintingInfo.h", | 108 "PaintLayerPaintingInfo.h", |
| 109 "PaintLayerScrollableArea.cpp", | 109 "PaintLayerScrollableArea.cpp", |
| 110 "PaintLayerStackingNode.cpp", | 110 "PaintLayerStackingNode.cpp", |
| 111 "PaintLayerStackingNodeIterator.cpp", | 111 "PaintLayerStackingNodeIterator.cpp", |
| 112 "PaintPhase.cpp", | 112 "PaintPhase.cpp", |
| 113 "PaintPhase.h", | 113 "PaintPhase.h", |
| 114 "PaintPropertyTreeBuilder.cpp", | 114 "PaintPropertyTreeBuilder.cpp", |
| 115 "PaintPropertyTreeBuilder.h", | 115 "PaintPropertyTreeBuilder.h", |
| 116 "PaintPropertyTreePrinter.cpp", | 116 "PaintPropertyTreePrinter.cpp", |
| 117 "PaintPropertyTreePrinter.h", | 117 "PaintPropertyTreePrinter.h", |
| 118 "PaintPropertyUnderInvalidationChecks.h", |
| 118 "PaintTiming.cpp", | 119 "PaintTiming.cpp", |
| 119 "PaintTiming.h", | 120 "PaintTiming.h", |
| 120 "PartPainter.cpp", | 121 "PartPainter.cpp", |
| 121 "PartPainter.h", | 122 "PartPainter.h", |
| 122 "PrePaintTreeWalk.cpp", | 123 "PrePaintTreeWalk.cpp", |
| 123 "PrePaintTreeWalk.h", | 124 "PrePaintTreeWalk.h", |
| 124 "ReplacedPainter.cpp", | 125 "ReplacedPainter.cpp", |
| 125 "ReplacedPainter.h", | 126 "ReplacedPainter.h", |
| 126 "RootInlineBoxPainter.cpp", | 127 "RootInlineBoxPainter.cpp", |
| 127 "RootInlineBoxPainter.h", | 128 "RootInlineBoxPainter.h", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 "VideoPainter.h", | 188 "VideoPainter.h", |
| 188 "ViewPainter.cpp", | 189 "ViewPainter.cpp", |
| 189 "ViewPainter.h", | 190 "ViewPainter.h", |
| 190 ] | 191 ] |
| 191 | 192 |
| 192 configs += [ | 193 configs += [ |
| 193 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 194 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 194 "//build/config/compiler:no_size_t_to_int_warning", | 195 "//build/config/compiler:no_size_t_to_int_warning", |
| 195 ] | 196 ] |
| 196 } | 197 } |
| OLD | NEW |