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