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

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

Issue 2280553002: Allow interpolation of background-size values with keywords in CSS Animations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove DCHECK Created 4 years, 3 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("animation") { 7 blink_core_sources("animation") {
8 split_count = 5 8 split_count = 5
9 9
10 sources = [ 10 sources = [
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 "CSSPathInterpolationType.h", 62 "CSSPathInterpolationType.h",
63 "CSSPositionAxisListInterpolationType.cpp", 63 "CSSPositionAxisListInterpolationType.cpp",
64 "CSSPositionAxisListInterpolationType.h", 64 "CSSPositionAxisListInterpolationType.h",
65 "CSSPositionInterpolationType.h", 65 "CSSPositionInterpolationType.h",
66 "CSSRotateInterpolationType.cpp", 66 "CSSRotateInterpolationType.cpp",
67 "CSSRotateInterpolationType.h", 67 "CSSRotateInterpolationType.h",
68 "CSSScaleInterpolationType.cpp", 68 "CSSScaleInterpolationType.cpp",
69 "CSSScaleInterpolationType.h", 69 "CSSScaleInterpolationType.h",
70 "CSSShadowListInterpolationType.cpp", 70 "CSSShadowListInterpolationType.cpp",
71 "CSSShadowListInterpolationType.h", 71 "CSSShadowListInterpolationType.h",
72 "CSSSizeListInterpolationType.cpp",
72 "CSSSizeListInterpolationType.h", 73 "CSSSizeListInterpolationType.h",
73 "CSSTextIndentInterpolationType.cpp", 74 "CSSTextIndentInterpolationType.cpp",
74 "CSSTextIndentInterpolationType.h", 75 "CSSTextIndentInterpolationType.h",
75 "CSSTransformInterpolationType.cpp", 76 "CSSTransformInterpolationType.cpp",
76 "CSSTransformInterpolationType.h", 77 "CSSTransformInterpolationType.h",
77 "CSSTransformOriginInterpolationType.h", 78 "CSSTransformOriginInterpolationType.h",
78 "CSSTranslateInterpolationType.cpp", 79 "CSSTranslateInterpolationType.cpp",
79 "CSSTranslateInterpolationType.h", 80 "CSSTranslateInterpolationType.h",
80 "CSSValueInterpolationType.cpp", 81 "CSSValueInterpolationType.cpp",
81 "CSSValueInterpolationType.h", 82 "CSSValueInterpolationType.h",
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 "SVGRectInterpolationType.cpp", 177 "SVGRectInterpolationType.cpp",
177 "SVGRectInterpolationType.h", 178 "SVGRectInterpolationType.h",
178 "SVGTransformListInterpolationType.cpp", 179 "SVGTransformListInterpolationType.cpp",
179 "SVGTransformListInterpolationType.h", 180 "SVGTransformListInterpolationType.h",
180 "SVGValueInterpolationType.cpp", 181 "SVGValueInterpolationType.cpp",
181 "SVGValueInterpolationType.h", 182 "SVGValueInterpolationType.h",
182 "SampledEffect.cpp", 183 "SampledEffect.cpp",
183 "SampledEffect.h", 184 "SampledEffect.h",
184 "ShadowInterpolationFunctions.cpp", 185 "ShadowInterpolationFunctions.cpp",
185 "ShadowInterpolationFunctions.h", 186 "ShadowInterpolationFunctions.h",
187 "SizeInterpolationFunctions.cpp",
188 "SizeInterpolationFunctions.h",
189 "SizeListPropertyFunctions.cpp",
190 "SizeListPropertyFunctions.h",
186 "StringKeyframe.cpp", 191 "StringKeyframe.cpp",
187 "StringKeyframe.h", 192 "StringKeyframe.h",
188 "StyleInterpolation.h", 193 "StyleInterpolation.h",
189 "Timing.cpp", 194 "Timing.cpp",
190 "Timing.h", 195 "Timing.h",
191 "TimingCalculations.h", 196 "TimingCalculations.h",
192 "TimingInput.cpp", 197 "TimingInput.cpp",
193 "TimingInput.h", 198 "TimingInput.h",
194 "TypedInterpolationValue.h", 199 "TypedInterpolationValue.h",
195 "UnderlyingValueOwner.cpp", 200 "UnderlyingValueOwner.cpp",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 "css/CSSTimingData.h", 256 "css/CSSTimingData.h",
252 "css/CSSTransitionData.cpp", 257 "css/CSSTransitionData.cpp",
253 "css/CSSTransitionData.h", 258 "css/CSSTransitionData.h",
254 ] 259 ]
255 260
256 configs += [ 261 configs += [
257 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 262 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
258 "//build/config/compiler:no_size_t_to_int_warning", 263 "//build/config/compiler:no_size_t_to_int_warning",
259 ] 264 ]
260 } 265 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698