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