| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "CSSImageListInterpolationType.h", | 45 "CSSImageListInterpolationType.h", |
| 46 "CSSImageSliceInterpolationType.cpp", | 46 "CSSImageSliceInterpolationType.cpp", |
| 47 "CSSImageSliceInterpolationType.h", | 47 "CSSImageSliceInterpolationType.h", |
| 48 "CSSInterpolationType.cpp", | 48 "CSSInterpolationType.cpp", |
| 49 "CSSInterpolationType.h", | 49 "CSSInterpolationType.h", |
| 50 "CSSLengthInterpolationType.cpp", | 50 "CSSLengthInterpolationType.cpp", |
| 51 "CSSLengthInterpolationType.h", | 51 "CSSLengthInterpolationType.h", |
| 52 "CSSLengthListInterpolationType.cpp", | 52 "CSSLengthListInterpolationType.cpp", |
| 53 "CSSLengthListInterpolationType.h", | 53 "CSSLengthListInterpolationType.h", |
| 54 "CSSLengthPairInterpolationType.h", | 54 "CSSLengthPairInterpolationType.h", |
| 55 "CSSMotionRotationInterpolationType.cpp", | |
| 56 "CSSMotionRotationInterpolationType.h", | |
| 57 "CSSNumberInterpolationType.cpp", | 55 "CSSNumberInterpolationType.cpp", |
| 58 "CSSNumberInterpolationType.h", | 56 "CSSNumberInterpolationType.h", |
| 57 "CSSOffsetRotationInterpolationType.cpp", |
| 58 "CSSOffsetRotationInterpolationType.h", |
| 59 "CSSPaintInterpolationType.cpp", | 59 "CSSPaintInterpolationType.cpp", |
| 60 "CSSPaintInterpolationType.h", | 60 "CSSPaintInterpolationType.h", |
| 61 "CSSPathInterpolationType.cpp", | 61 "CSSPathInterpolationType.cpp", |
| 62 "CSSPathInterpolationType.h", | 62 "CSSPathInterpolationType.h", |
| 63 "CSSPositionAxisListInterpolationType.cpp", | 63 "CSSPositionAxisListInterpolationType.cpp", |
| 64 "CSSPositionAxisListInterpolationType.h", | 64 "CSSPositionAxisListInterpolationType.h", |
| 65 "CSSPositionInterpolationType.h", | 65 "CSSPositionInterpolationType.h", |
| 66 "CSSRotateInterpolationType.cpp", | 66 "CSSRotateInterpolationType.cpp", |
| 67 "CSSRotateInterpolationType.h", | 67 "CSSRotateInterpolationType.h", |
| 68 "CSSScaleInterpolationType.cpp", | 68 "CSSScaleInterpolationType.cpp", |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 "css/CSSTimingData.h", | 256 "css/CSSTimingData.h", |
| 257 "css/CSSTransitionData.cpp", | 257 "css/CSSTransitionData.cpp", |
| 258 "css/CSSTransitionData.h", | 258 "css/CSSTransitionData.h", |
| 259 ] | 259 ] |
| 260 | 260 |
| 261 configs += [ | 261 configs += [ |
| 262 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 262 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 263 "//build/config/compiler:no_size_t_to_int_warning", | 263 "//build/config/compiler:no_size_t_to_int_warning", |
| 264 ] | 264 ] |
| 265 } | 265 } |
| OLD | NEW |