| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "ListInterpolationFunctions.h", | 150 "ListInterpolationFunctions.h", |
| 151 "NonInterpolableValue.h", | 151 "NonInterpolableValue.h", |
| 152 "NumberAttributeFunctions.h", | 152 "NumberAttributeFunctions.h", |
| 153 "NumberPropertyFunctions.cpp", | 153 "NumberPropertyFunctions.cpp", |
| 154 "NumberPropertyFunctions.h", | 154 "NumberPropertyFunctions.h", |
| 155 "PaintPropertyFunctions.cpp", | 155 "PaintPropertyFunctions.cpp", |
| 156 "PaintPropertyFunctions.h", | 156 "PaintPropertyFunctions.h", |
| 157 "PairwiseInterpolationValue.h", | 157 "PairwiseInterpolationValue.h", |
| 158 "PathInterpolationFunctions.cpp", | 158 "PathInterpolationFunctions.cpp", |
| 159 "PathInterpolationFunctions.h", | 159 "PathInterpolationFunctions.h", |
| 160 "PathPropertyFunctions.cpp", |
| 161 "PathPropertyFunctions.h", |
| 160 "PrimitiveInterpolation.h", | 162 "PrimitiveInterpolation.h", |
| 161 "PropertyHandle.cpp", | 163 "PropertyHandle.cpp", |
| 162 "PropertyHandle.h", | 164 "PropertyHandle.h", |
| 163 "SVGAngleInterpolationType.cpp", | 165 "SVGAngleInterpolationType.cpp", |
| 164 "SVGAngleInterpolationType.h", | 166 "SVGAngleInterpolationType.h", |
| 165 "SVGIntegerInterpolationType.cpp", | 167 "SVGIntegerInterpolationType.cpp", |
| 166 "SVGIntegerInterpolationType.h", | 168 "SVGIntegerInterpolationType.h", |
| 167 "SVGIntegerOptionalIntegerInterpolationType.cpp", | 169 "SVGIntegerOptionalIntegerInterpolationType.cpp", |
| 168 "SVGIntegerOptionalIntegerInterpolationType.h", | 170 "SVGIntegerOptionalIntegerInterpolationType.h", |
| 169 "SVGInterpolationType.cpp", | 171 "SVGInterpolationType.cpp", |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 "css/CSSTimingData.h", | 273 "css/CSSTimingData.h", |
| 272 "css/CSSTransitionData.cpp", | 274 "css/CSSTransitionData.cpp", |
| 273 "css/CSSTransitionData.h", | 275 "css/CSSTransitionData.h", |
| 274 ] | 276 ] |
| 275 | 277 |
| 276 configs += [ | 278 configs += [ |
| 277 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 279 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 278 "//build/config/compiler:no_size_t_to_int_warning", | 280 "//build/config/compiler:no_size_t_to_int_warning", |
| 279 ] | 281 ] |
| 280 } | 282 } |
| OLD | NEW |