| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 "ThemePainterDefault.cpp", | 183 "ThemePainterDefault.cpp", |
| 184 "ThemePainterDefault.h", | 184 "ThemePainterDefault.h", |
| 185 "ThemePainterMac.h", | 185 "ThemePainterMac.h", |
| 186 "ThemePainterMac.mm", | 186 "ThemePainterMac.mm", |
| 187 "Transform3DRecorder.cpp", | 187 "Transform3DRecorder.cpp", |
| 188 "Transform3DRecorder.h", | 188 "Transform3DRecorder.h", |
| 189 "TransformRecorder.cpp", | 189 "TransformRecorder.cpp", |
| 190 "TransformRecorder.h", | 190 "TransformRecorder.h", |
| 191 "VideoPainter.cpp", | 191 "VideoPainter.cpp", |
| 192 "VideoPainter.h", | 192 "VideoPainter.h", |
| 193 "ViewPaintInvalidator.cpp", |
| 194 "ViewPaintInvalidator.h", |
| 193 "ViewPainter.cpp", | 195 "ViewPainter.cpp", |
| 194 "ViewPainter.h", | 196 "ViewPainter.h", |
| 195 ] | 197 ] |
| 196 | 198 |
| 197 configs += [ | 199 configs += [ |
| 198 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 200 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 199 "//build/config/compiler:no_size_t_to_int_warning", | 201 "//build/config/compiler:no_size_t_to_int_warning", |
| 200 ] | 202 ] |
| 201 } | 203 } |
| OLD | NEW |