| 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 "AppliedDecorationPainter.cpp", | 10 "AppliedDecorationPainter.cpp", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "FilterEffectBuilder.h", | 56 "FilterEffectBuilder.h", |
| 57 "FilterPainter.cpp", | 57 "FilterPainter.cpp", |
| 58 "FilterPainter.h", | 58 "FilterPainter.h", |
| 59 "FindPropertiesNeedingUpdate.h", | 59 "FindPropertiesNeedingUpdate.h", |
| 60 "FirstMeaningfulPaintDetector.cpp", | 60 "FirstMeaningfulPaintDetector.cpp", |
| 61 "FirstMeaningfulPaintDetector.h", | 61 "FirstMeaningfulPaintDetector.h", |
| 62 "FloatClipRecorder.cpp", | 62 "FloatClipRecorder.cpp", |
| 63 "FloatClipRecorder.h", | 63 "FloatClipRecorder.h", |
| 64 "FragmentData.cpp", | 64 "FragmentData.cpp", |
| 65 "FragmentData.h", | 65 "FragmentData.h", |
| 66 "FramePaintTiming.h", |
| 66 "FramePainter.cpp", | 67 "FramePainter.cpp", |
| 67 "FramePainter.h", | 68 "FramePainter.h", |
| 68 "FrameSetPainter.cpp", | 69 "FrameSetPainter.cpp", |
| 69 "FrameSetPainter.h", | 70 "FrameSetPainter.h", |
| 70 "GridPainter.cpp", | 71 "GridPainter.cpp", |
| 71 "GridPainter.h", | 72 "GridPainter.h", |
| 72 "HTMLCanvasPaintInvalidator.cpp", | 73 "HTMLCanvasPaintInvalidator.cpp", |
| 73 "HTMLCanvasPaintInvalidator.h", | 74 "HTMLCanvasPaintInvalidator.h", |
| 74 "HTMLCanvasPainter.cpp", | 75 "HTMLCanvasPainter.cpp", |
| 75 "HTMLCanvasPainter.h", | 76 "HTMLCanvasPainter.h", |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 "ViewPaintInvalidator.h", | 212 "ViewPaintInvalidator.h", |
| 212 "ViewPainter.cpp", | 213 "ViewPainter.cpp", |
| 213 "ViewPainter.h", | 214 "ViewPainter.h", |
| 214 ] | 215 ] |
| 215 | 216 |
| 216 configs += [ | 217 configs += [ |
| 217 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 218 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 218 "//build/config/compiler:no_size_t_to_int_warning", | 219 "//build/config/compiler:no_size_t_to_int_warning", |
| 219 ] | 220 ] |
| 220 } | 221 } |
| OLD | NEW |