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

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

Issue 2869183002: Initial implementation of WorkletAnimation (Closed)
Patch Set: Add more DCHECKs Created 3 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 "TimingInput.cpp", 225 "TimingInput.cpp",
226 "TimingInput.h", 226 "TimingInput.h",
227 "TransitionInterpolation.cpp", 227 "TransitionInterpolation.cpp",
228 "TransitionInterpolation.h", 228 "TransitionInterpolation.h",
229 "TransitionKeyframe.cpp", 229 "TransitionKeyframe.cpp",
230 "TransitionKeyframe.h", 230 "TransitionKeyframe.h",
231 "TypedInterpolationValue.h", 231 "TypedInterpolationValue.h",
232 "UnderlyingLengthChecker.h", 232 "UnderlyingLengthChecker.h",
233 "UnderlyingValueOwner.cpp", 233 "UnderlyingValueOwner.cpp",
234 "UnderlyingValueOwner.h", 234 "UnderlyingValueOwner.h",
235 "WorkletAnimationBase.h",
236 "WorkletAnimationController.cpp",
237 "WorkletAnimationController.h",
235 "animatable/AnimatableDouble.cpp", 238 "animatable/AnimatableDouble.cpp",
236 "animatable/AnimatableDouble.h", 239 "animatable/AnimatableDouble.h",
237 "animatable/AnimatableFilterOperations.cpp", 240 "animatable/AnimatableFilterOperations.cpp",
238 "animatable/AnimatableFilterOperations.h", 241 "animatable/AnimatableFilterOperations.h",
239 "animatable/AnimatableTransform.cpp", 242 "animatable/AnimatableTransform.cpp",
240 "animatable/AnimatableTransform.h", 243 "animatable/AnimatableTransform.h",
241 "animatable/AnimatableUnknown.h", 244 "animatable/AnimatableUnknown.h",
242 "animatable/AnimatableValue.cpp", 245 "animatable/AnimatableValue.cpp",
243 "animatable/AnimatableValue.h", 246 "animatable/AnimatableValue.h",
244 "animatable/AnimatableValueKeyframe.cpp", 247 "animatable/AnimatableValueKeyframe.cpp",
(...skipping 10 matching lines...) Expand all
255 "css/CSSTimingData.h", 258 "css/CSSTimingData.h",
256 "css/CSSTransitionData.cpp", 259 "css/CSSTransitionData.cpp",
257 "css/CSSTransitionData.h", 260 "css/CSSTransitionData.h",
258 ] 261 ]
259 262
260 configs += [ 263 configs += [
261 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 264 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
262 "//build/config/compiler:no_size_t_to_int_warning", 265 "//build/config/compiler:no_size_t_to_int_warning",
263 ] 266 ]
264 } 267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698