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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 "FilterInterpolationFunctions.cpp", | 109 "FilterInterpolationFunctions.cpp", |
110 "FilterInterpolationFunctions.h", | 110 "FilterInterpolationFunctions.h", |
111 "FilterListPropertyFunctions.h", | 111 "FilterListPropertyFunctions.h", |
112 "ImageListPropertyFunctions.h", | 112 "ImageListPropertyFunctions.h", |
113 "ImagePropertyFunctions.h", | 113 "ImagePropertyFunctions.h", |
114 "ImageSlicePropertyFunctions.h", | 114 "ImageSlicePropertyFunctions.h", |
115 "InertEffect.cpp", | 115 "InertEffect.cpp", |
116 "InertEffect.h", | 116 "InertEffect.h", |
117 "InterpolableValue.cpp", | 117 "InterpolableValue.cpp", |
118 "InterpolableValue.h", | 118 "InterpolableValue.h", |
119 "Interpolation.cpp", | |
120 "Interpolation.h", | 119 "Interpolation.h", |
121 "InterpolationEffect.cpp", | 120 "InterpolationEffect.cpp", |
122 "InterpolationEffect.h", | 121 "InterpolationEffect.h", |
123 "InterpolationType.h", | 122 "InterpolationType.h", |
124 "InterpolationTypesMap.h", | 123 "InterpolationTypesMap.h", |
125 "InterpolationValue.h", | 124 "InterpolationValue.h", |
126 "InvalidatableInterpolation.cpp", | 125 "InvalidatableInterpolation.cpp", |
127 "InvalidatableInterpolation.h", | 126 "InvalidatableInterpolation.h", |
128 "Keyframe.cpp", | 127 "Keyframe.cpp", |
129 "Keyframe.h", | 128 "Keyframe.h", |
130 "KeyframeEffect.cpp", | 129 "KeyframeEffect.cpp", |
131 "KeyframeEffect.h", | 130 "KeyframeEffect.h", |
132 "KeyframeEffectModel.cpp", | 131 "KeyframeEffectModel.cpp", |
133 "KeyframeEffectModel.h", | 132 "KeyframeEffectModel.h", |
134 "KeyframeEffectReadOnly.cpp", | 133 "KeyframeEffectReadOnly.cpp", |
135 "KeyframeEffectReadOnly.h", | 134 "KeyframeEffectReadOnly.h", |
| 135 "LegacyStyleInterpolation.cpp", |
136 "LegacyStyleInterpolation.h", | 136 "LegacyStyleInterpolation.h", |
137 "LengthInterpolationFunctions.cpp", | 137 "LengthInterpolationFunctions.cpp", |
138 "LengthInterpolationFunctions.h", | 138 "LengthInterpolationFunctions.h", |
139 "LengthListPropertyFunctions.cpp", | 139 "LengthListPropertyFunctions.cpp", |
140 "LengthListPropertyFunctions.h", | 140 "LengthListPropertyFunctions.h", |
141 "LengthPropertyFunctions.cpp", | 141 "LengthPropertyFunctions.cpp", |
142 "LengthPropertyFunctions.h", | 142 "LengthPropertyFunctions.h", |
143 "LengthUnitsChecker.h", | 143 "LengthUnitsChecker.h", |
144 "ListInterpolationFunctions.cpp", | 144 "ListInterpolationFunctions.cpp", |
145 "ListInterpolationFunctions.h", | 145 "ListInterpolationFunctions.h", |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 "css/CSSTimingData.h", | 262 "css/CSSTimingData.h", |
263 "css/CSSTransitionData.cpp", | 263 "css/CSSTransitionData.cpp", |
264 "css/CSSTransitionData.h", | 264 "css/CSSTransitionData.h", |
265 ] | 265 ] |
266 | 266 |
267 configs += [ | 267 configs += [ |
268 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 268 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
269 "//build/config/compiler:no_size_t_to_int_warning", | 269 "//build/config/compiler:no_size_t_to_int_warning", |
270 ] | 270 ] |
271 } | 271 } |
OLD | NEW |