| 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 | 8 # Split into multiple static libraries on Windows official builds, where we |
| 9 # run into a 2GB max size limit. | 9 # run into a 2GB max size limit. |
| 10 if (is_win && is_official_build) { | 10 if (is_win && is_official_build) { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "SVGAnimationElement.cpp", | 48 "SVGAnimationElement.cpp", |
| 49 "SVGAnimationElement.h", | 49 "SVGAnimationElement.h", |
| 50 "SVGBoolean.cpp", | 50 "SVGBoolean.cpp", |
| 51 "SVGBoolean.h", | 51 "SVGBoolean.h", |
| 52 "SVGCircleElement.cpp", | 52 "SVGCircleElement.cpp", |
| 53 "SVGCircleElement.h", | 53 "SVGCircleElement.h", |
| 54 "SVGClipPathElement.cpp", | 54 "SVGClipPathElement.cpp", |
| 55 "SVGClipPathElement.h", | 55 "SVGClipPathElement.h", |
| 56 "SVGComponentTransferFunctionElement.cpp", | 56 "SVGComponentTransferFunctionElement.cpp", |
| 57 "SVGComponentTransferFunctionElement.h", | 57 "SVGComponentTransferFunctionElement.h", |
| 58 "SVGCursorElement.cpp", | |
| 59 "SVGCursorElement.h", | |
| 60 "SVGDefsElement.cpp", | 58 "SVGDefsElement.cpp", |
| 61 "SVGDefsElement.h", | 59 "SVGDefsElement.h", |
| 62 "SVGDescElement.cpp", | 60 "SVGDescElement.cpp", |
| 63 "SVGDescElement.h", | 61 "SVGDescElement.h", |
| 64 "SVGDiscardElement.cpp", | 62 "SVGDiscardElement.cpp", |
| 65 "SVGDiscardElement.h", | 63 "SVGDiscardElement.h", |
| 66 "SVGDocumentExtensions.cpp", | 64 "SVGDocumentExtensions.cpp", |
| 67 "SVGElement.cpp", | 65 "SVGElement.cpp", |
| 68 "SVGElement.h", | 66 "SVGElement.h", |
| 69 "SVGElementProxy.cpp", | 67 "SVGElementProxy.cpp", |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 "graphics/filters/SVGFilterBuilder.h", | 299 "graphics/filters/SVGFilterBuilder.h", |
| 302 "properties/SVGAnimatedProperty.cpp", | 300 "properties/SVGAnimatedProperty.cpp", |
| 303 "properties/SVGPropertyTearOff.cpp", | 301 "properties/SVGPropertyTearOff.cpp", |
| 304 ] | 302 ] |
| 305 | 303 |
| 306 configs += [ | 304 configs += [ |
| 307 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 305 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 308 "//build/config/compiler:no_size_t_to_int_warning", | 306 "//build/config/compiler:no_size_t_to_int_warning", |
| 309 ] | 307 ] |
| 310 } | 308 } |
| OLD | NEW |