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

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

Issue 2692273010: Support animating <angle> custom properties (Closed)
Patch Set: norebaseline Created 3 years, 10 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 = [
11 "Animation.cpp", 11 "Animation.cpp",
12 "Animation.h", 12 "Animation.h",
13 "AnimationClock.cpp", 13 "AnimationClock.cpp",
14 "AnimationClock.h", 14 "AnimationClock.h",
15 "AnimationEffectReadOnly.cpp", 15 "AnimationEffectReadOnly.cpp",
16 "AnimationEffectReadOnly.h", 16 "AnimationEffectReadOnly.h",
17 "AnimationEffectTiming.cpp", 17 "AnimationEffectTiming.cpp",
18 "AnimationEffectTiming.h", 18 "AnimationEffectTiming.h",
19 "AnimationEffectTimingReadOnly.cpp", 19 "AnimationEffectTimingReadOnly.cpp",
20 "AnimationEffectTimingReadOnly.h", 20 "AnimationEffectTimingReadOnly.h",
21 "AnimationInputHelpers.cpp", 21 "AnimationInputHelpers.cpp",
22 "AnimationInputHelpers.h", 22 "AnimationInputHelpers.h",
23 "AnimationTimeline.cpp", 23 "AnimationTimeline.cpp",
24 "AnimationTimeline.h", 24 "AnimationTimeline.h",
25 "BasicShapeInterpolationFunctions.cpp", 25 "BasicShapeInterpolationFunctions.cpp",
26 "BasicShapeInterpolationFunctions.h", 26 "BasicShapeInterpolationFunctions.h",
27 "BorderImageLengthBoxPropertyFunctions.h", 27 "BorderImageLengthBoxPropertyFunctions.h",
28 "CSSAngleInterpolationType.cpp",
29 "CSSAngleInterpolationType.h",
28 "CSSBasicShapeInterpolationType.cpp", 30 "CSSBasicShapeInterpolationType.cpp",
29 "CSSBasicShapeInterpolationType.h", 31 "CSSBasicShapeInterpolationType.h",
30 "CSSBorderImageLengthBoxInterpolationType.cpp", 32 "CSSBorderImageLengthBoxInterpolationType.cpp",
31 "CSSBorderImageLengthBoxInterpolationType.h", 33 "CSSBorderImageLengthBoxInterpolationType.h",
32 "CSSClipInterpolationType.cpp", 34 "CSSClipInterpolationType.cpp",
33 "CSSClipInterpolationType.h", 35 "CSSClipInterpolationType.h",
34 "CSSColorInterpolationType.cpp", 36 "CSSColorInterpolationType.cpp",
35 "CSSColorInterpolationType.h", 37 "CSSColorInterpolationType.h",
36 "CSSFilterListInterpolationType.cpp", 38 "CSSFilterListInterpolationType.cpp",
37 "CSSFilterListInterpolationType.h", 39 "CSSFilterListInterpolationType.h",
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 "css/CSSTimingData.h", 264 "css/CSSTimingData.h",
263 "css/CSSTransitionData.cpp", 265 "css/CSSTransitionData.cpp",
264 "css/CSSTransitionData.h", 266 "css/CSSTransitionData.h",
265 ] 267 ]
266 268
267 configs += [ 269 configs += [
268 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 270 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
269 "//build/config/compiler:no_size_t_to_int_warning", 271 "//build/config/compiler:no_size_t_to_int_warning",
270 ] 272 ]
271 } 273 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698