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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "FileUploadControlPainter.h", | 49 "FileUploadControlPainter.h", |
50 "FilterEffectBuilder.cpp", | 50 "FilterEffectBuilder.cpp", |
51 "FilterEffectBuilder.h", | 51 "FilterEffectBuilder.h", |
52 "FilterPainter.cpp", | 52 "FilterPainter.cpp", |
53 "FilterPainter.h", | 53 "FilterPainter.h", |
54 "FindPropertiesNeedingUpdate.h", | 54 "FindPropertiesNeedingUpdate.h", |
55 "FirstMeaningfulPaintDetector.cpp", | 55 "FirstMeaningfulPaintDetector.cpp", |
56 "FirstMeaningfulPaintDetector.h", | 56 "FirstMeaningfulPaintDetector.h", |
57 "FloatClipRecorder.cpp", | 57 "FloatClipRecorder.cpp", |
58 "FloatClipRecorder.h", | 58 "FloatClipRecorder.h", |
| 59 "FragmentData.cpp", |
| 60 "FragmentData.h", |
59 "FramePainter.cpp", | 61 "FramePainter.cpp", |
60 "FramePainter.h", | 62 "FramePainter.h", |
61 "FrameSetPainter.cpp", | 63 "FrameSetPainter.cpp", |
62 "FrameSetPainter.h", | 64 "FrameSetPainter.h", |
63 "GridPainter.cpp", | 65 "GridPainter.cpp", |
64 "GridPainter.h", | 66 "GridPainter.h", |
65 "HTMLCanvasPaintInvalidator.cpp", | 67 "HTMLCanvasPaintInvalidator.cpp", |
66 "HTMLCanvasPaintInvalidator.h", | 68 "HTMLCanvasPaintInvalidator.h", |
67 "HTMLCanvasPainter.cpp", | 69 "HTMLCanvasPainter.cpp", |
68 "HTMLCanvasPainter.h", | 70 "HTMLCanvasPainter.h", |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 "ViewPaintInvalidator.h", | 204 "ViewPaintInvalidator.h", |
203 "ViewPainter.cpp", | 205 "ViewPainter.cpp", |
204 "ViewPainter.h", | 206 "ViewPainter.h", |
205 ] | 207 ] |
206 | 208 |
207 configs += [ | 209 configs += [ |
208 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 210 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
209 "//build/config/compiler:no_size_t_to_int_warning", | 211 "//build/config/compiler:no_size_t_to_int_warning", |
210 ] | 212 ] |
211 } | 213 } |
OLD | NEW |