| 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 29 matching lines...) Expand all Loading... |
| 40 "EmbeddedObjectPainter.cpp", | 40 "EmbeddedObjectPainter.cpp", |
| 41 "EmbeddedObjectPainter.h", | 41 "EmbeddedObjectPainter.h", |
| 42 "FieldsetPainter.cpp", | 42 "FieldsetPainter.cpp", |
| 43 "FieldsetPainter.h", | 43 "FieldsetPainter.h", |
| 44 "FileUploadControlPainter.cpp", | 44 "FileUploadControlPainter.cpp", |
| 45 "FileUploadControlPainter.h", | 45 "FileUploadControlPainter.h", |
| 46 "FilterEffectBuilder.cpp", | 46 "FilterEffectBuilder.cpp", |
| 47 "FilterEffectBuilder.h", | 47 "FilterEffectBuilder.h", |
| 48 "FilterPainter.cpp", | 48 "FilterPainter.cpp", |
| 49 "FilterPainter.h", | 49 "FilterPainter.h", |
| 50 "FindPropertiesNeedingUpdate.h", |
| 50 "FirstMeaningfulPaintDetector.cpp", | 51 "FirstMeaningfulPaintDetector.cpp", |
| 51 "FirstMeaningfulPaintDetector.h", | 52 "FirstMeaningfulPaintDetector.h", |
| 52 "FloatClipRecorder.cpp", | 53 "FloatClipRecorder.cpp", |
| 53 "FloatClipRecorder.h", | 54 "FloatClipRecorder.h", |
| 54 "FramePainter.cpp", | 55 "FramePainter.cpp", |
| 55 "FramePainter.h", | 56 "FramePainter.h", |
| 56 "FrameSetPainter.cpp", | 57 "FrameSetPainter.cpp", |
| 57 "FrameSetPainter.h", | 58 "FrameSetPainter.h", |
| 58 "GridPainter.cpp", | 59 "GridPainter.cpp", |
| 59 "GridPainter.h", | 60 "GridPainter.h", |
| (...skipping 127 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 |