| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "CSSNumberInterpolationType.h", | 61 "CSSNumberInterpolationType.h", |
| 62 "CSSOffsetRotateInterpolationType.cpp", | 62 "CSSOffsetRotateInterpolationType.cpp", |
| 63 "CSSOffsetRotateInterpolationType.h", | 63 "CSSOffsetRotateInterpolationType.h", |
| 64 "CSSPaintInterpolationType.cpp", | 64 "CSSPaintInterpolationType.cpp", |
| 65 "CSSPaintInterpolationType.h", | 65 "CSSPaintInterpolationType.h", |
| 66 "CSSPathInterpolationType.cpp", | 66 "CSSPathInterpolationType.cpp", |
| 67 "CSSPathInterpolationType.h", | 67 "CSSPathInterpolationType.h", |
| 68 "CSSPositionAxisListInterpolationType.cpp", | 68 "CSSPositionAxisListInterpolationType.cpp", |
| 69 "CSSPositionAxisListInterpolationType.h", | 69 "CSSPositionAxisListInterpolationType.h", |
| 70 "CSSPositionInterpolationType.h", | 70 "CSSPositionInterpolationType.h", |
| 71 "CSSResolutionInterpolationType.cpp", |
| 72 "CSSResolutionInterpolationType.h", |
| 71 "CSSRotateInterpolationType.cpp", | 73 "CSSRotateInterpolationType.cpp", |
| 72 "CSSRotateInterpolationType.h", | 74 "CSSRotateInterpolationType.h", |
| 73 "CSSScaleInterpolationType.cpp", | 75 "CSSScaleInterpolationType.cpp", |
| 74 "CSSScaleInterpolationType.h", | 76 "CSSScaleInterpolationType.h", |
| 75 "CSSShadowListInterpolationType.cpp", | 77 "CSSShadowListInterpolationType.cpp", |
| 76 "CSSShadowListInterpolationType.h", | 78 "CSSShadowListInterpolationType.h", |
| 77 "CSSSizeListInterpolationType.cpp", | 79 "CSSSizeListInterpolationType.cpp", |
| 78 "CSSSizeListInterpolationType.h", | 80 "CSSSizeListInterpolationType.h", |
| 79 "CSSTextIndentInterpolationType.cpp", | 81 "CSSTextIndentInterpolationType.cpp", |
| 80 "CSSTextIndentInterpolationType.h", | 82 "CSSTextIndentInterpolationType.h", |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 "css/CSSTimingData.h", | 278 "css/CSSTimingData.h", |
| 277 "css/CSSTransitionData.cpp", | 279 "css/CSSTransitionData.cpp", |
| 278 "css/CSSTransitionData.h", | 280 "css/CSSTransitionData.h", |
| 279 ] | 281 ] |
| 280 | 282 |
| 281 configs += [ | 283 configs += [ |
| 282 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 284 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 283 "//build/config/compiler:no_size_t_to_int_warning", | 285 "//build/config/compiler:no_size_t_to_int_warning", |
| 284 ] | 286 ] |
| 285 } | 287 } |
| OLD | NEW |