| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 "SVGPointListInterpolationType.cpp", | 193 "SVGPointListInterpolationType.cpp", |
| 194 "SVGPointListInterpolationType.h", | 194 "SVGPointListInterpolationType.h", |
| 195 "SVGRectInterpolationType.cpp", | 195 "SVGRectInterpolationType.cpp", |
| 196 "SVGRectInterpolationType.h", | 196 "SVGRectInterpolationType.h", |
| 197 "SVGTransformListInterpolationType.cpp", | 197 "SVGTransformListInterpolationType.cpp", |
| 198 "SVGTransformListInterpolationType.h", | 198 "SVGTransformListInterpolationType.h", |
| 199 "SVGValueInterpolationType.cpp", | 199 "SVGValueInterpolationType.cpp", |
| 200 "SVGValueInterpolationType.h", | 200 "SVGValueInterpolationType.h", |
| 201 "SampledEffect.cpp", | 201 "SampledEffect.cpp", |
| 202 "SampledEffect.h", | 202 "SampledEffect.h", |
| 203 "ScrollTimeline.cpp", |
| 204 "ScrollTimeline.h", |
| 205 "ScrollTimelineOptions.h", |
| 203 "ShadowInterpolationFunctions.cpp", | 206 "ShadowInterpolationFunctions.cpp", |
| 204 "ShadowInterpolationFunctions.h", | 207 "ShadowInterpolationFunctions.h", |
| 205 "ShadowListPropertyFunctions.h", | 208 "ShadowListPropertyFunctions.h", |
| 206 "SideIndex.h", | 209 "SideIndex.h", |
| 207 "SizeInterpolationFunctions.cpp", | 210 "SizeInterpolationFunctions.cpp", |
| 208 "SizeInterpolationFunctions.h", | 211 "SizeInterpolationFunctions.h", |
| 209 "SizeListPropertyFunctions.cpp", | 212 "SizeListPropertyFunctions.cpp", |
| 210 "SizeListPropertyFunctions.h", | 213 "SizeListPropertyFunctions.h", |
| 211 "StringKeyframe.cpp", | 214 "StringKeyframe.cpp", |
| 212 "StringKeyframe.h", | 215 "StringKeyframe.h", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 "css/CSSTimingData.h", | 281 "css/CSSTimingData.h", |
| 279 "css/CSSTransitionData.cpp", | 282 "css/CSSTransitionData.cpp", |
| 280 "css/CSSTransitionData.h", | 283 "css/CSSTransitionData.h", |
| 281 ] | 284 ] |
| 282 | 285 |
| 283 configs += [ | 286 configs += [ |
| 284 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 287 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 285 "//build/config/compiler:no_size_t_to_int_warning", | 288 "//build/config/compiler:no_size_t_to_int_warning", |
| 286 ] | 289 ] |
| 287 } | 290 } |
| OLD | NEW |