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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 "SampledEffect.cpp", | 190 "SampledEffect.cpp", |
191 "SampledEffect.h", | 191 "SampledEffect.h", |
192 "ShadowInterpolationFunctions.cpp", | 192 "ShadowInterpolationFunctions.cpp", |
193 "ShadowInterpolationFunctions.h", | 193 "ShadowInterpolationFunctions.h", |
194 "SizeInterpolationFunctions.cpp", | 194 "SizeInterpolationFunctions.cpp", |
195 "SizeInterpolationFunctions.h", | 195 "SizeInterpolationFunctions.h", |
196 "SizeListPropertyFunctions.cpp", | 196 "SizeListPropertyFunctions.cpp", |
197 "SizeListPropertyFunctions.h", | 197 "SizeListPropertyFunctions.h", |
198 "StringKeyframe.cpp", | 198 "StringKeyframe.cpp", |
199 "StringKeyframe.h", | 199 "StringKeyframe.h", |
200 "StyleInterpolation.h", | |
201 "Timing.cpp", | 200 "Timing.cpp", |
202 "Timing.h", | 201 "Timing.h", |
203 "TimingCalculations.h", | 202 "TimingCalculations.h", |
204 "TimingInput.cpp", | 203 "TimingInput.cpp", |
205 "TimingInput.h", | 204 "TimingInput.h", |
206 "TypedInterpolationValue.h", | 205 "TypedInterpolationValue.h", |
207 "UnderlyingValueOwner.cpp", | 206 "UnderlyingValueOwner.cpp", |
208 "UnderlyingValueOwner.h", | 207 "UnderlyingValueOwner.h", |
209 "animatable/AnimatableClipPathOperation.cpp", | 208 "animatable/AnimatableClipPathOperation.cpp", |
210 "animatable/AnimatableClipPathOperation.h", | 209 "animatable/AnimatableClipPathOperation.h", |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 "css/CSSTimingData.h", | 262 "css/CSSTimingData.h", |
264 "css/CSSTransitionData.cpp", | 263 "css/CSSTransitionData.cpp", |
265 "css/CSSTransitionData.h", | 264 "css/CSSTransitionData.h", |
266 ] | 265 ] |
267 | 266 |
268 configs += [ | 267 configs += [ |
269 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 268 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
270 "//build/config/compiler:no_size_t_to_int_warning", | 269 "//build/config/compiler:no_size_t_to_int_warning", |
271 ] | 270 ] |
272 } | 271 } |
OLD | NEW |