| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "CSSRotateInterpolationType.cpp", | 70 "CSSRotateInterpolationType.cpp", |
| 71 "CSSRotateInterpolationType.h", | 71 "CSSRotateInterpolationType.h", |
| 72 "CSSScaleInterpolationType.cpp", | 72 "CSSScaleInterpolationType.cpp", |
| 73 "CSSScaleInterpolationType.h", | 73 "CSSScaleInterpolationType.h", |
| 74 "CSSShadowListInterpolationType.cpp", | 74 "CSSShadowListInterpolationType.cpp", |
| 75 "CSSShadowListInterpolationType.h", | 75 "CSSShadowListInterpolationType.h", |
| 76 "CSSSizeListInterpolationType.cpp", | 76 "CSSSizeListInterpolationType.cpp", |
| 77 "CSSSizeListInterpolationType.h", | 77 "CSSSizeListInterpolationType.h", |
| 78 "CSSTextIndentInterpolationType.cpp", | 78 "CSSTextIndentInterpolationType.cpp", |
| 79 "CSSTextIndentInterpolationType.h", | 79 "CSSTextIndentInterpolationType.h", |
| 80 "CSSTimeInterpolationType.cpp", |
| 81 "CSSTimeInterpolationType.h", |
| 80 "CSSTransformInterpolationType.cpp", | 82 "CSSTransformInterpolationType.cpp", |
| 81 "CSSTransformInterpolationType.h", | 83 "CSSTransformInterpolationType.h", |
| 82 "CSSTransformOriginInterpolationType.h", | 84 "CSSTransformOriginInterpolationType.h", |
| 83 "CSSTranslateInterpolationType.cpp", | 85 "CSSTranslateInterpolationType.cpp", |
| 84 "CSSTranslateInterpolationType.h", | 86 "CSSTranslateInterpolationType.h", |
| 85 "CSSValueInterpolationType.cpp", | 87 "CSSValueInterpolationType.cpp", |
| 86 "CSSValueInterpolationType.h", | 88 "CSSValueInterpolationType.h", |
| 87 "CSSVisibilityInterpolationType.cpp", | 89 "CSSVisibilityInterpolationType.cpp", |
| 88 "CSSVisibilityInterpolationType.h", | 90 "CSSVisibilityInterpolationType.h", |
| 89 "ColorPropertyFunctions.cpp", | 91 "ColorPropertyFunctions.cpp", |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 "css/CSSTimingData.h", | 266 "css/CSSTimingData.h", |
| 265 "css/CSSTransitionData.cpp", | 267 "css/CSSTransitionData.cpp", |
| 266 "css/CSSTransitionData.h", | 268 "css/CSSTransitionData.h", |
| 267 ] | 269 ] |
| 268 | 270 |
| 269 configs += [ | 271 configs += [ |
| 270 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 272 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 271 "//build/config/compiler:no_size_t_to_int_warning", | 273 "//build/config/compiler:no_size_t_to_int_warning", |
| 272 ] | 274 ] |
| 273 } | 275 } |
| OLD | NEW |