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

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

Issue 2891743003: Enable interpolation of CSS property font-variation-settings (Closed)
Patch Set: updatetest Created 3 years, 7 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 22 matching lines...) Expand all
33 "CSSBorderImageLengthBoxInterpolationType.cpp", 33 "CSSBorderImageLengthBoxInterpolationType.cpp",
34 "CSSBorderImageLengthBoxInterpolationType.h", 34 "CSSBorderImageLengthBoxInterpolationType.h",
35 "CSSClipInterpolationType.cpp", 35 "CSSClipInterpolationType.cpp",
36 "CSSClipInterpolationType.h", 36 "CSSClipInterpolationType.h",
37 "CSSColorInterpolationType.cpp", 37 "CSSColorInterpolationType.cpp",
38 "CSSColorInterpolationType.h", 38 "CSSColorInterpolationType.h",
39 "CSSFilterListInterpolationType.cpp", 39 "CSSFilterListInterpolationType.cpp",
40 "CSSFilterListInterpolationType.h", 40 "CSSFilterListInterpolationType.h",
41 "CSSFontSizeInterpolationType.cpp", 41 "CSSFontSizeInterpolationType.cpp",
42 "CSSFontSizeInterpolationType.h", 42 "CSSFontSizeInterpolationType.h",
43 "CSSFontVariationSettingsInterpolationType.cpp",
44 "CSSFontVariationSettingsInterpolationType.h",
43 "CSSFontWeightInterpolationType.cpp", 45 "CSSFontWeightInterpolationType.cpp",
44 "CSSFontWeightInterpolationType.h", 46 "CSSFontWeightInterpolationType.h",
45 "CSSImageInterpolationType.cpp", 47 "CSSImageInterpolationType.cpp",
46 "CSSImageInterpolationType.h", 48 "CSSImageInterpolationType.h",
47 "CSSImageListInterpolationType.cpp", 49 "CSSImageListInterpolationType.cpp",
48 "CSSImageListInterpolationType.h", 50 "CSSImageListInterpolationType.h",
49 "CSSImageSliceInterpolationType.cpp", 51 "CSSImageSliceInterpolationType.cpp",
50 "CSSImageSliceInterpolationType.h", 52 "CSSImageSliceInterpolationType.h",
51 "CSSInterpolationType.cpp", 53 "CSSInterpolationType.cpp",
52 "CSSInterpolationType.h", 54 "CSSInterpolationType.h",
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 "animatable/AnimatableClipPathOperation.cpp", 228 "animatable/AnimatableClipPathOperation.cpp",
227 "animatable/AnimatableClipPathOperation.h", 229 "animatable/AnimatableClipPathOperation.h",
228 "animatable/AnimatableColor.cpp", 230 "animatable/AnimatableColor.cpp",
229 "animatable/AnimatableColor.h", 231 "animatable/AnimatableColor.h",
230 "animatable/AnimatableDouble.cpp", 232 "animatable/AnimatableDouble.cpp",
231 "animatable/AnimatableDouble.h", 233 "animatable/AnimatableDouble.h",
232 "animatable/AnimatableDoubleAndBool.cpp", 234 "animatable/AnimatableDoubleAndBool.cpp",
233 "animatable/AnimatableDoubleAndBool.h", 235 "animatable/AnimatableDoubleAndBool.h",
234 "animatable/AnimatableFilterOperations.cpp", 236 "animatable/AnimatableFilterOperations.cpp",
235 "animatable/AnimatableFilterOperations.h", 237 "animatable/AnimatableFilterOperations.h",
238 "animatable/AnimatableFontVariationSettings.cpp",
239 "animatable/AnimatableFontVariationSettings.h",
236 "animatable/AnimatableImage.cpp", 240 "animatable/AnimatableImage.cpp",
237 "animatable/AnimatableImage.h", 241 "animatable/AnimatableImage.h",
238 "animatable/AnimatableLength.cpp", 242 "animatable/AnimatableLength.cpp",
239 "animatable/AnimatableLength.h", 243 "animatable/AnimatableLength.h",
240 "animatable/AnimatableLengthBox.cpp", 244 "animatable/AnimatableLengthBox.cpp",
241 "animatable/AnimatableLengthBox.h", 245 "animatable/AnimatableLengthBox.h",
242 "animatable/AnimatableLengthBoxAndBool.cpp", 246 "animatable/AnimatableLengthBoxAndBool.cpp",
243 "animatable/AnimatableLengthBoxAndBool.h", 247 "animatable/AnimatableLengthBoxAndBool.h",
244 "animatable/AnimatableLengthPoint.cpp", 248 "animatable/AnimatableLengthPoint.cpp",
245 "animatable/AnimatableLengthPoint.h", 249 "animatable/AnimatableLengthPoint.h",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 "css/CSSTimingData.h", 282 "css/CSSTimingData.h",
279 "css/CSSTransitionData.cpp", 283 "css/CSSTransitionData.cpp",
280 "css/CSSTransitionData.h", 284 "css/CSSTransitionData.h",
281 ] 285 ]
282 286
283 configs += [ 287 configs += [
284 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 288 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
285 "//build/config/compiler:no_size_t_to_int_warning", 289 "//build/config/compiler:no_size_t_to_int_warning",
286 ] 290 ]
287 } 291 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698