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

Side by Side Diff: cc/BUILD.gn

Issue 947033002: CC Animations: Establish AnimationHost, AnimationTimeline and AnimationPlayer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months 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 | « no previous file | cc/animation/animation_player.h » ('j') | cc/animation/animation_player.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("cc") { 7 component("cc") {
8 sources = [ 8 sources = [
9 "animation/animation.cc", 9 "animation/animation.cc",
10 "animation/animation.h", 10 "animation/animation.h",
11 "animation/animation_curve.cc", 11 "animation/animation_curve.cc",
12 "animation/animation_curve.h", 12 "animation/animation_curve.h",
13 "animation/animation_delegate.h", 13 "animation/animation_delegate.h",
14 "animation/animation_events.cc", 14 "animation/animation_events.cc",
15 "animation/animation_events.h", 15 "animation/animation_events.h",
16 "animation/animation_id_provider.cc", 16 "animation/animation_id_provider.cc",
17 "animation/animation_id_provider.h", 17 "animation/animation_id_provider.h",
18 "animation/animation_player.cc",
19 "animation/animation_player.h",
18 "animation/animation_registrar.cc", 20 "animation/animation_registrar.cc",
19 "animation/animation_registrar.h", 21 "animation/animation_registrar.h",
22 "animation/animation_timeline.cc",
23 "animation/animation_timeline.h",
20 "animation/keyframed_animation_curve.cc", 24 "animation/keyframed_animation_curve.cc",
21 "animation/keyframed_animation_curve.h", 25 "animation/keyframed_animation_curve.h",
22 "animation/layer_animation_controller.cc", 26 "animation/layer_animation_controller.cc",
23 "animation/layer_animation_controller.h", 27 "animation/layer_animation_controller.h",
24 "animation/layer_animation_event_observer.h", 28 "animation/layer_animation_event_observer.h",
25 "animation/layer_animation_value_observer.h", 29 "animation/layer_animation_value_observer.h",
26 "animation/layer_animation_value_provider.h", 30 "animation/layer_animation_value_provider.h",
27 "animation/scroll_offset_animation_curve.cc", 31 "animation/scroll_offset_animation_curve.cc",
28 "animation/scroll_offset_animation_curve.h", 32 "animation/scroll_offset_animation_curve.h",
29 "animation/scrollbar_animation_controller.h", 33 "animation/scrollbar_animation_controller.h",
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 "trees/layer_sorter.h", 510 "trees/layer_sorter.h",
507 "trees/layer_tree_host.cc", 511 "trees/layer_tree_host.cc",
508 "trees/layer_tree_host.h", 512 "trees/layer_tree_host.h",
509 "trees/layer_tree_host_client.h", 513 "trees/layer_tree_host_client.h",
510 "trees/layer_tree_host_common.cc", 514 "trees/layer_tree_host_common.cc",
511 "trees/layer_tree_host_common.h", 515 "trees/layer_tree_host_common.h",
512 "trees/layer_tree_host_impl.cc", 516 "trees/layer_tree_host_impl.cc",
513 "trees/layer_tree_host_impl.h", 517 "trees/layer_tree_host_impl.h",
514 "trees/layer_tree_impl.cc", 518 "trees/layer_tree_impl.cc",
515 "trees/layer_tree_impl.h", 519 "trees/layer_tree_impl.h",
520 "trees/layer_tree_mutators_client.h",
516 "trees/layer_tree_settings.cc", 521 "trees/layer_tree_settings.cc",
517 "trees/layer_tree_settings.h", 522 "trees/layer_tree_settings.h",
518 "trees/occlusion.cc", 523 "trees/occlusion.cc",
519 "trees/occlusion.h", 524 "trees/occlusion.h",
520 "trees/occlusion_tracker.cc", 525 "trees/occlusion_tracker.cc",
521 "trees/occlusion_tracker.h", 526 "trees/occlusion_tracker.h",
522 "trees/property_tree.cc", 527 "trees/property_tree.cc",
523 "trees/property_tree.h", 528 "trees/property_tree.h",
524 "trees/property_tree_builder.cc", 529 "trees/property_tree_builder.cc",
525 "trees/property_tree_builder.h", 530 "trees/property_tree_builder.h",
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
914 "//media", 919 "//media",
915 "//skia", 920 "//skia",
916 "//testing/gmock", 921 "//testing/gmock",
917 "//testing/gtest", 922 "//testing/gtest",
918 "//testing/perf", 923 "//testing/perf",
919 "//ui/gfx", 924 "//ui/gfx",
920 "//ui/gfx/geometry", 925 "//ui/gfx/geometry",
921 "//ui/gl", 926 "//ui/gl",
922 ] 927 ]
923 } 928 }
OLDNEW
« no previous file with comments | « no previous file | cc/animation/animation_player.h » ('j') | cc/animation/animation_player.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698