| 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", |
| 11 "BackgroundImageGeometry.h", | 11 "BackgroundImageGeometry.h", |
| 12 "BlockFlowPaintInvalidator.cpp", | 12 "BlockFlowPaintInvalidator.cpp", |
| 13 "BlockFlowPaintInvalidator.h", | 13 "BlockFlowPaintInvalidator.h", |
| 14 "BlockFlowPainter.cpp", | 14 "BlockFlowPainter.cpp", |
| 15 "BlockFlowPainter.h", | 15 "BlockFlowPainter.h", |
| 16 "BlockPaintInvalidator.cpp", |
| 17 "BlockPaintInvalidator.h", |
| 16 "BlockPainter.cpp", | 18 "BlockPainter.cpp", |
| 17 "BlockPainter.h", | 19 "BlockPainter.h", |
| 18 "BoxBorderPainter.cpp", | 20 "BoxBorderPainter.cpp", |
| 19 "BoxBorderPainter.h", | 21 "BoxBorderPainter.h", |
| 20 "BoxClipper.cpp", | 22 "BoxClipper.cpp", |
| 21 "BoxClipper.h", | 23 "BoxClipper.h", |
| 22 "BoxDecorationData.cpp", | 24 "BoxDecorationData.cpp", |
| 23 "BoxDecorationData.h", | 25 "BoxDecorationData.h", |
| 24 "BoxPaintInvalidator.cpp", | 26 "BoxPaintInvalidator.cpp", |
| 25 "BoxPaintInvalidator.h", | 27 "BoxPaintInvalidator.h", |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 "VideoPainter.h", | 188 "VideoPainter.h", |
| 187 "ViewPainter.cpp", | 189 "ViewPainter.cpp", |
| 188 "ViewPainter.h", | 190 "ViewPainter.h", |
| 189 ] | 191 ] |
| 190 | 192 |
| 191 configs += [ | 193 configs += [ |
| 192 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 194 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 193 "//build/config/compiler:no_size_t_to_int_warning", | 195 "//build/config/compiler:no_size_t_to_int_warning", |
| 194 ] | 196 ] |
| 195 } | 197 } |
| OLD | NEW |