| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "InterpolationType.h", | 119 "InterpolationType.h", |
| 120 "InterpolationValue.h", | 120 "InterpolationValue.h", |
| 121 "InvalidatableInterpolation.cpp", | 121 "InvalidatableInterpolation.cpp", |
| 122 "InvalidatableInterpolation.h", | 122 "InvalidatableInterpolation.h", |
| 123 "Keyframe.cpp", | 123 "Keyframe.cpp", |
| 124 "Keyframe.h", | 124 "Keyframe.h", |
| 125 "KeyframeEffect.cpp", | 125 "KeyframeEffect.cpp", |
| 126 "KeyframeEffect.h", | 126 "KeyframeEffect.h", |
| 127 "KeyframeEffectModel.cpp", | 127 "KeyframeEffectModel.cpp", |
| 128 "KeyframeEffectModel.h", | 128 "KeyframeEffectModel.h", |
| 129 "KeyframeEffectReadOnly.cpp", |
| 130 "KeyframeEffectReadOnly.h", |
| 129 "LegacyStyleInterpolation.h", | 131 "LegacyStyleInterpolation.h", |
| 130 "LengthInterpolationFunctions.cpp", | 132 "LengthInterpolationFunctions.cpp", |
| 131 "LengthInterpolationFunctions.h", | 133 "LengthInterpolationFunctions.h", |
| 132 "LengthListPropertyFunctions.cpp", | 134 "LengthListPropertyFunctions.cpp", |
| 133 "LengthListPropertyFunctions.h", | 135 "LengthListPropertyFunctions.h", |
| 134 "LengthPropertyFunctions.cpp", | 136 "LengthPropertyFunctions.cpp", |
| 135 "LengthPropertyFunctions.h", | 137 "LengthPropertyFunctions.h", |
| 136 "LengthUnitsChecker.h", | 138 "LengthUnitsChecker.h", |
| 137 "ListInterpolationFunctions.cpp", | 139 "ListInterpolationFunctions.cpp", |
| 138 "ListInterpolationFunctions.h", | 140 "ListInterpolationFunctions.h", |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 "css/CSSTimingData.h", | 258 "css/CSSTimingData.h", |
| 257 "css/CSSTransitionData.cpp", | 259 "css/CSSTransitionData.cpp", |
| 258 "css/CSSTransitionData.h", | 260 "css/CSSTransitionData.h", |
| 259 ] | 261 ] |
| 260 | 262 |
| 261 configs += [ | 263 configs += [ |
| 262 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 264 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 263 "//build/config/compiler:no_size_t_to_int_warning", | 265 "//build/config/compiler:no_size_t_to_int_warning", |
| 264 ] | 266 ] |
| 265 } | 267 } |
| OLD | NEW |