Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Side by Side Diff: third_party/WebKit/Source/core/svg/BUILD.gn

Issue 2595393002: Fold SVGAnimatedTypeAnimator into SVGAnimateElement (Closed)
Patch Set: Fix m_type setup in animateTransform Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 25 matching lines...) Expand all
36 "SVGAnimatedHref.cpp", 36 "SVGAnimatedHref.cpp",
37 "SVGAnimatedHref.h", 37 "SVGAnimatedHref.h",
38 "SVGAnimatedInteger.cpp", 38 "SVGAnimatedInteger.cpp",
39 "SVGAnimatedIntegerOptionalInteger.cpp", 39 "SVGAnimatedIntegerOptionalInteger.cpp",
40 "SVGAnimatedLength.cpp", 40 "SVGAnimatedLength.cpp",
41 "SVGAnimatedNumber.cpp", 41 "SVGAnimatedNumber.cpp",
42 "SVGAnimatedNumberOptionalNumber.cpp", 42 "SVGAnimatedNumberOptionalNumber.cpp",
43 "SVGAnimatedPath.cpp", 43 "SVGAnimatedPath.cpp",
44 "SVGAnimatedString.cpp", 44 "SVGAnimatedString.cpp",
45 "SVGAnimatedString.h", 45 "SVGAnimatedString.h",
46 "SVGAnimatedTypeAnimator.cpp",
47 "SVGAnimatedTypeAnimator.h",
48 "SVGAnimationElement.cpp", 46 "SVGAnimationElement.cpp",
49 "SVGAnimationElement.h", 47 "SVGAnimationElement.h",
50 "SVGBoolean.cpp", 48 "SVGBoolean.cpp",
51 "SVGBoolean.h", 49 "SVGBoolean.h",
52 "SVGCircleElement.cpp", 50 "SVGCircleElement.cpp",
53 "SVGCircleElement.h", 51 "SVGCircleElement.h",
54 "SVGClipPathElement.cpp", 52 "SVGClipPathElement.cpp",
55 "SVGClipPathElement.h", 53 "SVGClipPathElement.h",
56 "SVGComponentTransferFunctionElement.cpp", 54 "SVGComponentTransferFunctionElement.cpp",
57 "SVGComponentTransferFunctionElement.h", 55 "SVGComponentTransferFunctionElement.h",
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 "graphics/filters/SVGFilterBuilder.h", 297 "graphics/filters/SVGFilterBuilder.h",
300 "properties/SVGAnimatedProperty.cpp", 298 "properties/SVGAnimatedProperty.cpp",
301 "properties/SVGPropertyTearOff.cpp", 299 "properties/SVGPropertyTearOff.cpp",
302 ] 300 ]
303 301
304 configs += [ 302 configs += [
305 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 303 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
306 "//build/config/compiler:no_size_t_to_int_warning", 304 "//build/config/compiler:no_size_t_to_int_warning",
307 ] 305 ]
308 } 306 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698