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

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: Move MutatorHostClient back to cc/trees/ Created 5 years, 5 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_host.h » ('j') | cc/animation/animation_host.cc » ('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_host.cc",
17 "animation/animation_host.h",
16 "animation/animation_id_provider.cc", 18 "animation/animation_id_provider.cc",
17 "animation/animation_id_provider.h", 19 "animation/animation_id_provider.h",
20 "animation/animation_player.cc",
21 "animation/animation_player.h",
18 "animation/animation_registrar.cc", 22 "animation/animation_registrar.cc",
19 "animation/animation_registrar.h", 23 "animation/animation_registrar.h",
24 "animation/animation_timeline.cc",
25 "animation/animation_timeline.h",
26 "animation/element_animations.cc",
27 "animation/element_animations.h",
20 "animation/keyframed_animation_curve.cc", 28 "animation/keyframed_animation_curve.cc",
21 "animation/keyframed_animation_curve.h", 29 "animation/keyframed_animation_curve.h",
22 "animation/layer_animation_controller.cc", 30 "animation/layer_animation_controller.cc",
23 "animation/layer_animation_controller.h", 31 "animation/layer_animation_controller.h",
24 "animation/layer_animation_event_observer.h", 32 "animation/layer_animation_event_observer.h",
25 "animation/layer_animation_value_observer.h", 33 "animation/layer_animation_value_observer.h",
26 "animation/layer_animation_value_provider.h", 34 "animation/layer_animation_value_provider.h",
27 "animation/scroll_offset_animation_curve.cc", 35 "animation/scroll_offset_animation_curve.cc",
28 "animation/scroll_offset_animation_curve.h", 36 "animation/scroll_offset_animation_curve.h",
29 "animation/scrollbar_animation_controller.cc", 37 "animation/scrollbar_animation_controller.cc",
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 "trees/layer_tree_host.cc", 499 "trees/layer_tree_host.cc",
492 "trees/layer_tree_host.h", 500 "trees/layer_tree_host.h",
493 "trees/layer_tree_host_client.h", 501 "trees/layer_tree_host_client.h",
494 "trees/layer_tree_host_common.cc", 502 "trees/layer_tree_host_common.cc",
495 "trees/layer_tree_host_common.h", 503 "trees/layer_tree_host_common.h",
496 "trees/layer_tree_host_impl.cc", 504 "trees/layer_tree_host_impl.cc",
497 "trees/layer_tree_host_impl.h", 505 "trees/layer_tree_host_impl.h",
498 "trees/layer_tree_host_single_thread_client.h", 506 "trees/layer_tree_host_single_thread_client.h",
499 "trees/layer_tree_impl.cc", 507 "trees/layer_tree_impl.cc",
500 "trees/layer_tree_impl.h", 508 "trees/layer_tree_impl.h",
509 "trees/layer_tree_mutators_client.h",
ajuma 2015/06/30 15:56:55 mutator_host_client.h?
loyso (OOO) 2015/07/01 02:25:47 Done.
501 "trees/layer_tree_settings.cc", 510 "trees/layer_tree_settings.cc",
502 "trees/layer_tree_settings.h", 511 "trees/layer_tree_settings.h",
503 "trees/occlusion.cc", 512 "trees/occlusion.cc",
504 "trees/occlusion.h", 513 "trees/occlusion.h",
505 "trees/occlusion_tracker.cc", 514 "trees/occlusion_tracker.cc",
506 "trees/occlusion_tracker.h", 515 "trees/occlusion_tracker.h",
507 "trees/property_tree.cc", 516 "trees/property_tree.cc",
508 "trees/property_tree.h", 517 "trees/property_tree.h",
509 "trees/property_tree_builder.cc", 518 "trees/property_tree_builder.cc",
510 "trees/property_tree_builder.h", 519 "trees/property_tree_builder.h",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 configs -= [ "//build/config/compiler:optimize" ] 561 configs -= [ "//build/config/compiler:optimize" ]
553 configs += [ "//build/config/compiler:optimize_max" ] 562 configs += [ "//build/config/compiler:optimize_max" ]
554 } 563 }
555 } 564 }
556 565
557 source_set("test_support") { 566 source_set("test_support") {
558 testonly = true 567 testonly = true
559 sources = [ 568 sources = [
560 "test/animation_test_common.cc", 569 "test/animation_test_common.cc",
561 "test/animation_test_common.h", 570 "test/animation_test_common.h",
571 "test/animation_timelines_test_common.cc",
572 "test/animation_timelines_test_common.h",
562 "test/begin_frame_args_test.cc", 573 "test/begin_frame_args_test.cc",
563 "test/begin_frame_args_test.h", 574 "test/begin_frame_args_test.h",
564 "test/failure_output_surface.cc", 575 "test/failure_output_surface.cc",
565 "test/failure_output_surface.h", 576 "test/failure_output_surface.h",
566 "test/fake_content_layer_client.cc", 577 "test/fake_content_layer_client.cc",
567 "test/fake_content_layer_client.h", 578 "test/fake_content_layer_client.h",
568 "test/fake_delegated_renderer_layer.cc", 579 "test/fake_delegated_renderer_layer.cc",
569 "test/fake_delegated_renderer_layer.h", 580 "test/fake_delegated_renderer_layer.h",
570 "test/fake_delegated_renderer_layer_impl.cc", 581 "test/fake_delegated_renderer_layer_impl.cc",
571 "test/fake_delegated_renderer_layer_impl.h", 582 "test/fake_delegated_renderer_layer_impl.h",
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
712 "//ui/gl", 723 "//ui/gl",
713 ] 724 ]
714 725
715 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. 726 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links.
716 deps += [ "//third_party/mesa:osmesa" ] 727 deps += [ "//third_party/mesa:osmesa" ]
717 } 728 }
718 } 729 }
719 730
720 test("cc_unittests") { 731 test("cc_unittests") {
721 sources = [ 732 sources = [
733 "animation/animation_host_unittest.cc",
734 "animation/animation_player_unittest.cc",
735 "animation/animation_timeline_unittest.cc",
722 "animation/animation_unittest.cc", 736 "animation/animation_unittest.cc",
737 "animation/element_animations_unittest.cc",
723 "animation/keyframed_animation_curve_unittest.cc", 738 "animation/keyframed_animation_curve_unittest.cc",
724 "animation/layer_animation_controller_unittest.cc", 739 "animation/layer_animation_controller_unittest.cc",
725 "animation/scroll_offset_animation_curve_unittest.cc", 740 "animation/scroll_offset_animation_curve_unittest.cc",
726 "animation/scrollbar_animation_controller_linear_fade_unittest.cc", 741 "animation/scrollbar_animation_controller_linear_fade_unittest.cc",
727 "animation/scrollbar_animation_controller_thinning_unittest.cc", 742 "animation/scrollbar_animation_controller_thinning_unittest.cc",
728 "animation/transform_operations_unittest.cc", 743 "animation/transform_operations_unittest.cc",
729 "base/float_quad_unittest.cc", 744 "base/float_quad_unittest.cc",
730 "base/histograms_unittest.cc", 745 "base/histograms_unittest.cc",
731 "base/list_container_unittest.cc", 746 "base/list_container_unittest.cc",
732 "base/math_util_unittest.cc", 747 "base/math_util_unittest.cc",
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
915 "//ui/gfx/geometry", 930 "//ui/gfx/geometry",
916 "//ui/gl", 931 "//ui/gl",
917 ] 932 ]
918 933
919 if (is_android) { 934 if (is_android) {
920 isolate_file = "cc_perftests.isolate" 935 isolate_file = "cc_perftests.isolate"
921 } 936 }
922 } 937 }
923 # When adding support for isolates, please have a look at run-time dependencies 938 # When adding support for isolates, please have a look at run-time dependencies
924 # in the cc_unittests_run target in cc_tests.gyp. 939 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/animation/animation_host.h » ('j') | cc/animation/animation_host.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698