OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//cc/cc.gni") |
| 6 |
| 7 cc_component("animation") { |
| 8 output_name = "cc_animation" |
| 9 sources = [ |
| 10 "animation.cc", |
| 11 "animation.h", |
| 12 "animation_curve.cc", |
| 13 "animation_curve.h", |
| 14 "animation_delegate.h", |
| 15 "animation_events.cc", |
| 16 "animation_events.h", |
| 17 "animation_export.h", |
| 18 "animation_host.cc", |
| 19 "animation_host.h", |
| 20 "animation_id_provider.cc", |
| 21 "animation_id_provider.h", |
| 22 "animation_player.cc", |
| 23 "animation_player.h", |
| 24 "animation_timeline.cc", |
| 25 "animation_timeline.h", |
| 26 "element_animations.cc", |
| 27 "element_animations.h", |
| 28 "keyframed_animation_curve.cc", |
| 29 "keyframed_animation_curve.h", |
| 30 "scroll_offset_animation_curve.cc", |
| 31 "scroll_offset_animation_curve.h", |
| 32 "scroll_offset_animations.cc", |
| 33 "scroll_offset_animations.h", |
| 34 "scroll_offset_animations_impl.cc", |
| 35 "scroll_offset_animations_impl.h", |
| 36 "timing_function.cc", |
| 37 "timing_function.h", |
| 38 "transform_operation.cc", |
| 39 "transform_operation.h", |
| 40 "transform_operations.cc", |
| 41 "transform_operations.h", |
| 42 ] |
| 43 |
| 44 defines = [ "CC_ANIMATION_IMPLEMENTATION=1" ] |
| 45 |
| 46 deps = [ |
| 47 "//base", |
| 48 "//cc", |
| 49 "//ui/gfx", |
| 50 "//ui/gfx/geometry", |
| 51 ] |
| 52 } |
OLD | NEW |