| 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("//cc/cc.gni") | 5 import("//cc/cc.gni") |
| 6 | 6 |
| 7 cc_component("animation") { | 7 cc_component("animation") { |
| 8 output_name = "cc_animation" | 8 output_name = "cc_animation" |
| 9 sources = [ | 9 sources = [ |
| 10 "animation.cc", | 10 "animation.cc", |
| 11 "animation.h", | 11 "animation.h", |
| 12 "animation_curve.cc", | 12 "animation_curve.cc", |
| 13 "animation_curve.h", | 13 "animation_curve.h", |
| 14 "animation_delegate.h", | 14 "animation_delegate.h", |
| 15 "animation_events.cc", | 15 "animation_events.cc", |
| 16 "animation_events.h", | 16 "animation_events.h", |
| 17 "animation_export.h", | 17 "animation_export.h", |
| 18 "animation_host.cc", | 18 "animation_host.cc", |
| 19 "animation_host.h", | 19 "animation_host.h", |
| 20 "animation_id_provider.cc", | 20 "animation_id_provider.cc", |
| 21 "animation_id_provider.h", | 21 "animation_id_provider.h", |
| 22 "animation_observer.h", |
| 22 "animation_player.cc", | 23 "animation_player.cc", |
| 23 "animation_player.h", | 24 "animation_player.h", |
| 24 "animation_timeline.cc", | 25 "animation_timeline.cc", |
| 25 "animation_timeline.h", | 26 "animation_timeline.h", |
| 26 "element_animations.cc", | 27 "element_animations.cc", |
| 27 "element_animations.h", | 28 "element_animations.h", |
| 28 "keyframed_animation_curve.cc", | 29 "keyframed_animation_curve.cc", |
| 29 "keyframed_animation_curve.h", | 30 "keyframed_animation_curve.h", |
| 30 "scroll_offset_animation_curve.cc", | 31 "scroll_offset_animation_curve.cc", |
| 31 "scroll_offset_animation_curve.h", | 32 "scroll_offset_animation_curve.h", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 43 | 44 |
| 44 defines = [ "CC_ANIMATION_IMPLEMENTATION=1" ] | 45 defines = [ "CC_ANIMATION_IMPLEMENTATION=1" ] |
| 45 | 46 |
| 46 deps = [ | 47 deps = [ |
| 47 "//base", | 48 "//base", |
| 48 "//cc", | 49 "//cc", |
| 49 "//ui/gfx", | 50 "//ui/gfx", |
| 50 "//ui/gfx/geometry", | 51 "//ui/gfx/geometry", |
| 51 ] | 52 ] |
| 52 } | 53 } |
| OLD | NEW |