| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "CSSInterpolationType.h", | 49 "CSSInterpolationType.h", |
| 50 "CSSInterpolationTypesMap.cpp", | 50 "CSSInterpolationTypesMap.cpp", |
| 51 "CSSInterpolationTypesMap.h", | 51 "CSSInterpolationTypesMap.h", |
| 52 "CSSLengthInterpolationType.cpp", | 52 "CSSLengthInterpolationType.cpp", |
| 53 "CSSLengthInterpolationType.h", | 53 "CSSLengthInterpolationType.h", |
| 54 "CSSLengthListInterpolationType.cpp", | 54 "CSSLengthListInterpolationType.cpp", |
| 55 "CSSLengthListInterpolationType.h", | 55 "CSSLengthListInterpolationType.h", |
| 56 "CSSLengthPairInterpolationType.h", | 56 "CSSLengthPairInterpolationType.h", |
| 57 "CSSNumberInterpolationType.cpp", | 57 "CSSNumberInterpolationType.cpp", |
| 58 "CSSNumberInterpolationType.h", | 58 "CSSNumberInterpolationType.h", |
| 59 "CSSOffsetRotationInterpolationType.cpp", | 59 "CSSOffsetRotateInterpolationType.cpp", |
| 60 "CSSOffsetRotationInterpolationType.h", | 60 "CSSOffsetRotateInterpolationType.h", |
| 61 "CSSPaintInterpolationType.cpp", | 61 "CSSPaintInterpolationType.cpp", |
| 62 "CSSPaintInterpolationType.h", | 62 "CSSPaintInterpolationType.h", |
| 63 "CSSPathInterpolationType.cpp", | 63 "CSSPathInterpolationType.cpp", |
| 64 "CSSPathInterpolationType.h", | 64 "CSSPathInterpolationType.h", |
| 65 "CSSPositionAxisListInterpolationType.cpp", | 65 "CSSPositionAxisListInterpolationType.cpp", |
| 66 "CSSPositionAxisListInterpolationType.h", | 66 "CSSPositionAxisListInterpolationType.h", |
| 67 "CSSPositionInterpolationType.h", | 67 "CSSPositionInterpolationType.h", |
| 68 "CSSRotateInterpolationType.cpp", | 68 "CSSRotateInterpolationType.cpp", |
| 69 "CSSRotateInterpolationType.h", | 69 "CSSRotateInterpolationType.h", |
| 70 "CSSScaleInterpolationType.cpp", | 70 "CSSScaleInterpolationType.cpp", |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 "css/CSSTimingData.h", | 263 "css/CSSTimingData.h", |
| 264 "css/CSSTransitionData.cpp", | 264 "css/CSSTransitionData.cpp", |
| 265 "css/CSSTransitionData.h", | 265 "css/CSSTransitionData.h", |
| 266 ] | 266 ] |
| 267 | 267 |
| 268 configs += [ | 268 configs += [ |
| 269 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 269 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 270 "//build/config/compiler:no_size_t_to_int_warning", | 270 "//build/config/compiler:no_size_t_to_int_warning", |
| 271 ] | 271 ] |
| 272 } | 272 } |
| OLD | NEW |