| 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 # Split into multiple static libraries on Windows official builds, where we |
| 9 # run into a 2GB max size limit. |
| 10 if (is_win && is_official_build) { |
| 11 split_count = 5 |
| 12 } else { |
| 13 split_count = 1 |
| 14 } |
| 15 |
| 8 sources = [ | 16 sources = [ |
| 9 "ColorDistance.cpp", | 17 "ColorDistance.cpp", |
| 10 "ColorDistance.h", | 18 "ColorDistance.h", |
| 11 "GradientAttributes.h", | 19 "GradientAttributes.h", |
| 12 "LinearGradientAttributes.h", | 20 "LinearGradientAttributes.h", |
| 13 "PatternAttributes.h", | 21 "PatternAttributes.h", |
| 14 "RadialGradientAttributes.h", | 22 "RadialGradientAttributes.h", |
| 15 "SVGAElement.cpp", | 23 "SVGAElement.cpp", |
| 16 "SVGAElement.h", | 24 "SVGAElement.h", |
| 17 "SVGAngle.cpp", | 25 "SVGAngle.cpp", |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 "graphics/filters/SVGFilterBuilder.h", | 301 "graphics/filters/SVGFilterBuilder.h", |
| 294 "properties/SVGAnimatedProperty.cpp", | 302 "properties/SVGAnimatedProperty.cpp", |
| 295 "properties/SVGPropertyTearOff.cpp", | 303 "properties/SVGPropertyTearOff.cpp", |
| 296 ] | 304 ] |
| 297 | 305 |
| 298 configs += [ | 306 configs += [ |
| 299 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 307 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 300 "//build/config/compiler:no_size_t_to_int_warning", | 308 "//build/config/compiler:no_size_t_to_int_warning", |
| 301 ] | 309 ] |
| 302 } | 310 } |
| OLD | NEW |