| 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 target(core_link_small_target_type, "svg") { | 7 blink_core_sources("svg") { |
| 8 visibility = [ "//third_party/WebKit/Source/core/*" ] | |
| 9 | |
| 10 sources = [ | 8 sources = [ |
| 11 "ColorDistance.cpp", | 9 "ColorDistance.cpp", |
| 12 "ColorDistance.h", | 10 "ColorDistance.h", |
| 13 "GradientAttributes.h", | 11 "GradientAttributes.h", |
| 14 "LinearGradientAttributes.h", | 12 "LinearGradientAttributes.h", |
| 15 "PatternAttributes.h", | 13 "PatternAttributes.h", |
| 16 "RadialGradientAttributes.h", | 14 "RadialGradientAttributes.h", |
| 17 "SVGAElement.cpp", | 15 "SVGAElement.cpp", |
| 18 "SVGAElement.h", | 16 "SVGAElement.h", |
| 19 "SVGAngle.cpp", | 17 "SVGAngle.cpp", |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 "graphics/SVGImageForContainer.cpp", | 286 "graphics/SVGImageForContainer.cpp", |
| 289 "graphics/SVGImageForContainer.h", | 287 "graphics/SVGImageForContainer.h", |
| 290 "graphics/filters/SVGFEImage.cpp", | 288 "graphics/filters/SVGFEImage.cpp", |
| 291 "graphics/filters/SVGFEImage.h", | 289 "graphics/filters/SVGFEImage.h", |
| 292 "graphics/filters/SVGFilterBuilder.cpp", | 290 "graphics/filters/SVGFilterBuilder.cpp", |
| 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 -= core_config_remove | |
| 299 configs += core_config_add | |
| 300 configs += [ | 296 configs += [ |
| 301 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 297 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 302 "//build/config/compiler:no_size_t_to_int_warning", | 298 "//build/config/compiler:no_size_t_to_int_warning", |
| 303 ] | 299 ] |
| 304 | |
| 305 deps = [ | |
| 306 "//third_party/WebKit/Source/core:prerequisites", | |
| 307 ] | |
| 308 } | 300 } |
| OLD | NEW |