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("svg") { | 7 blink_core_sources("svg") { |
8 sources = [ | 8 sources = [ |
9 "ColorDistance.cpp", | 9 "ColorDistance.cpp", |
10 "ColorDistance.h", | 10 "ColorDistance.h", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "SVGCursorElement.cpp", | 50 "SVGCursorElement.cpp", |
51 "SVGCursorElement.h", | 51 "SVGCursorElement.h", |
52 "SVGDefsElement.cpp", | 52 "SVGDefsElement.cpp", |
53 "SVGDefsElement.h", | 53 "SVGDefsElement.h", |
54 "SVGDescElement.cpp", | 54 "SVGDescElement.cpp", |
55 "SVGDescElement.h", | 55 "SVGDescElement.h", |
56 "SVGDiscardElement.cpp", | 56 "SVGDiscardElement.cpp", |
57 "SVGDiscardElement.h", | 57 "SVGDiscardElement.h", |
58 "SVGDocumentExtensions.cpp", | 58 "SVGDocumentExtensions.cpp", |
59 "SVGElement.cpp", | 59 "SVGElement.cpp", |
60 "SVGElement.h", | |
61 "SVGElementProxy.cpp", | |
62 "SVGElementProxy.h", | |
63 "SVGElementRareData.cpp", | 60 "SVGElementRareData.cpp", |
64 "SVGElementRareData.h", | 61 "SVGElementRareData.h", |
65 "SVGEllipseElement.cpp", | 62 "SVGEllipseElement.cpp", |
66 "SVGEllipseElement.h", | 63 "SVGEllipseElement.h", |
67 "SVGEnumeration.cpp", | 64 "SVGEnumeration.cpp", |
68 "SVGFEBlendElement.cpp", | 65 "SVGFEBlendElement.cpp", |
69 "SVGFEBlendElement.h", | 66 "SVGFEBlendElement.h", |
70 "SVGFEColorMatrixElement.cpp", | 67 "SVGFEColorMatrixElement.cpp", |
71 "SVGFEColorMatrixElement.h", | 68 "SVGFEColorMatrixElement.h", |
72 "SVGFEComponentTransferElement.cpp", | 69 "SVGFEComponentTransferElement.cpp", |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 "SVGPreserveAspectRatio.cpp", | 210 "SVGPreserveAspectRatio.cpp", |
214 "SVGPreserveAspectRatioTearOff.cpp", | 211 "SVGPreserveAspectRatioTearOff.cpp", |
215 "SVGRadialGradientElement.cpp", | 212 "SVGRadialGradientElement.cpp", |
216 "SVGRadialGradientElement.h", | 213 "SVGRadialGradientElement.h", |
217 "SVGRect.cpp", | 214 "SVGRect.cpp", |
218 "SVGRect.h", | 215 "SVGRect.h", |
219 "SVGRectElement.cpp", | 216 "SVGRectElement.cpp", |
220 "SVGRectElement.h", | 217 "SVGRectElement.h", |
221 "SVGRectTearOff.cpp", | 218 "SVGRectTearOff.cpp", |
222 "SVGRectTearOff.h", | 219 "SVGRectTearOff.h", |
| 220 "SVGResourceClient.cpp", |
223 "SVGResourceClient.h", | 221 "SVGResourceClient.h", |
224 "SVGSVGElement.cpp", | 222 "SVGSVGElement.cpp", |
225 "SVGSVGElement.h", | 223 "SVGSVGElement.h", |
226 "SVGScriptElement.cpp", | 224 "SVGScriptElement.cpp", |
227 "SVGScriptElement.h", | 225 "SVGScriptElement.h", |
228 "SVGSetElement.cpp", | 226 "SVGSetElement.cpp", |
229 "SVGSetElement.h", | 227 "SVGSetElement.h", |
230 "SVGStaticStringList.cpp", | 228 "SVGStaticStringList.cpp", |
231 "SVGStaticStringList.h", | 229 "SVGStaticStringList.h", |
232 "SVGStopElement.cpp", | 230 "SVGStopElement.cpp", |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 "graphics/filters/SVGFilterBuilder.h", | 291 "graphics/filters/SVGFilterBuilder.h", |
294 "properties/SVGAnimatedProperty.cpp", | 292 "properties/SVGAnimatedProperty.cpp", |
295 "properties/SVGPropertyTearOff.cpp", | 293 "properties/SVGPropertyTearOff.cpp", |
296 ] | 294 ] |
297 | 295 |
298 configs += [ | 296 configs += [ |
299 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 297 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
300 "//build/config/compiler:no_size_t_to_int_warning", | 298 "//build/config/compiler:no_size_t_to_int_warning", |
301 ] | 299 ] |
302 } | 300 } |
OLD | NEW |