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

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

Issue 2379863003: Implement AnimationEffectTimingReadOnly interface (Closed)
Patch Set: Response to review, update formatting of new files Created 4 years, 2 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",
20 "AnimationEffectTimingReadOnly.h",
19 "AnimationInputHelpers.cpp", 21 "AnimationInputHelpers.cpp",
20 "AnimationInputHelpers.h", 22 "AnimationInputHelpers.h",
21 "AnimationStack.cpp", 23 "AnimationStack.cpp",
22 "AnimationStack.h", 24 "AnimationStack.h",
23 "AnimationTimeline.cpp", 25 "AnimationTimeline.cpp",
24 "AnimationTimeline.h", 26 "AnimationTimeline.h",
25 "BasicShapeInterpolationFunctions.cpp", 27 "BasicShapeInterpolationFunctions.cpp",
26 "BasicShapeInterpolationFunctions.h", 28 "BasicShapeInterpolationFunctions.h",
27 "BorderImageLengthBoxPropertyFunctions.h", 29 "BorderImageLengthBoxPropertyFunctions.h",
28 "CSSBasicShapeInterpolationType.cpp", 30 "CSSBasicShapeInterpolationType.cpp",
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 "css/CSSTimingData.h", 260 "css/CSSTimingData.h",
259 "css/CSSTransitionData.cpp", 261 "css/CSSTransitionData.cpp",
260 "css/CSSTransitionData.h", 262 "css/CSSTransitionData.h",
261 ] 263 ]
262 264
263 configs += [ 265 configs += [
264 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 266 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
265 "//build/config/compiler:no_size_t_to_int_warning", 267 "//build/config/compiler:no_size_t_to_int_warning",
266 ] 268 ]
267 } 269 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698