| OLD | NEW |
| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 "ShadowInterpolationFunctions.cpp", | 210 "ShadowInterpolationFunctions.cpp", |
| 211 "ShadowInterpolationFunctions.h", | 211 "ShadowInterpolationFunctions.h", |
| 212 "ShadowListPropertyFunctions.h", | 212 "ShadowListPropertyFunctions.h", |
| 213 "SideIndex.h", | 213 "SideIndex.h", |
| 214 "SizeInterpolationFunctions.cpp", | 214 "SizeInterpolationFunctions.cpp", |
| 215 "SizeInterpolationFunctions.h", | 215 "SizeInterpolationFunctions.h", |
| 216 "SizeListPropertyFunctions.cpp", | 216 "SizeListPropertyFunctions.cpp", |
| 217 "SizeListPropertyFunctions.h", | 217 "SizeListPropertyFunctions.h", |
| 218 "StringKeyframe.cpp", | 218 "StringKeyframe.cpp", |
| 219 "StringKeyframe.h", | 219 "StringKeyframe.h", |
| 220 "SuperAnimationTimeline.h", |
| 220 "Timing.cpp", | 221 "Timing.cpp", |
| 221 "Timing.h", | 222 "Timing.h", |
| 222 "TimingCalculations.h", | 223 "TimingCalculations.h", |
| 223 "TimingInput.cpp", | 224 "TimingInput.cpp", |
| 224 "TimingInput.h", | 225 "TimingInput.h", |
| 225 "TransitionInterpolation.cpp", | 226 "TransitionInterpolation.cpp", |
| 226 "TransitionInterpolation.h", | 227 "TransitionInterpolation.h", |
| 227 "TransitionKeyframe.cpp", | 228 "TransitionKeyframe.cpp", |
| 228 "TransitionKeyframe.h", | 229 "TransitionKeyframe.h", |
| 229 "TypedInterpolationValue.h", | 230 "TypedInterpolationValue.h", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 252 "css/CSSTimingData.h", | 253 "css/CSSTimingData.h", |
| 253 "css/CSSTransitionData.cpp", | 254 "css/CSSTransitionData.cpp", |
| 254 "css/CSSTransitionData.h", | 255 "css/CSSTransitionData.h", |
| 255 ] | 256 ] |
| 256 | 257 |
| 257 configs += [ | 258 configs += [ |
| 258 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 259 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 259 "//build/config/compiler:no_size_t_to_int_warning", | 260 "//build/config/compiler:no_size_t_to_int_warning", |
| 260 ] | 261 ] |
| 261 } | 262 } |
| OLD | NEW |