Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Side by Side Diff: cc/animation/BUILD.gn

Issue 2506093003: CC Animation: Make cc/animation an independent GN component. (Closed)
Patch Set: Rebase. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/BUILD.gn ('k') | cc/animation/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « cc/BUILD.gn ('k') | cc/animation/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698