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

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: Implement test helpers. Created 5 years, 8 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.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_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",
20 "animation/keyframed_animation_curve.cc", 26 "animation/keyframed_animation_curve.cc",
21 "animation/keyframed_animation_curve.h", 27 "animation/keyframed_animation_curve.h",
22 "animation/layer_animation_controller.cc", 28 "animation/layer_animation_controller.cc",
23 "animation/layer_animation_controller.h", 29 "animation/layer_animation_controller.h",
24 "animation/layer_animation_event_observer.h", 30 "animation/layer_animation_event_observer.h",
25 "animation/layer_animation_value_observer.h", 31 "animation/layer_animation_value_observer.h",
26 "animation/layer_animation_value_provider.h", 32 "animation/layer_animation_value_provider.h",
27 "animation/scroll_offset_animation_curve.cc", 33 "animation/scroll_offset_animation_curve.cc",
28 "animation/scroll_offset_animation_curve.h", 34 "animation/scroll_offset_animation_curve.h",
29 "animation/scrollbar_animation_controller.cc", 35 "animation/scrollbar_animation_controller.cc",
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 "trees/layer_tree_host.cc", 498 "trees/layer_tree_host.cc",
493 "trees/layer_tree_host.h", 499 "trees/layer_tree_host.h",
494 "trees/layer_tree_host_client.h", 500 "trees/layer_tree_host_client.h",
495 "trees/layer_tree_host_common.cc", 501 "trees/layer_tree_host_common.cc",
496 "trees/layer_tree_host_common.h", 502 "trees/layer_tree_host_common.h",
497 "trees/layer_tree_host_impl.cc", 503 "trees/layer_tree_host_impl.cc",
498 "trees/layer_tree_host_impl.h", 504 "trees/layer_tree_host_impl.h",
499 "trees/layer_tree_host_single_thread_client.h", 505 "trees/layer_tree_host_single_thread_client.h",
500 "trees/layer_tree_impl.cc", 506 "trees/layer_tree_impl.cc",
501 "trees/layer_tree_impl.h", 507 "trees/layer_tree_impl.h",
508 "trees/layer_tree_mutators_client.h",
502 "trees/layer_tree_settings.cc", 509 "trees/layer_tree_settings.cc",
503 "trees/layer_tree_settings.h", 510 "trees/layer_tree_settings.h",
504 "trees/occlusion.cc", 511 "trees/occlusion.cc",
505 "trees/occlusion.h", 512 "trees/occlusion.h",
506 "trees/occlusion_tracker.cc", 513 "trees/occlusion_tracker.cc",
507 "trees/occlusion_tracker.h", 514 "trees/occlusion_tracker.h",
508 "trees/property_tree.cc", 515 "trees/property_tree.cc",
509 "trees/property_tree.h", 516 "trees/property_tree.h",
510 "trees/property_tree_builder.cc", 517 "trees/property_tree_builder.cc",
511 "trees/property_tree_builder.h", 518 "trees/property_tree_builder.h",
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 "//ui/gl", 723 "//ui/gl",
717 ] 724 ]
718 725
719 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. 726 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links.
720 deps += [ "//third_party/mesa:osmesa" ] 727 deps += [ "//third_party/mesa:osmesa" ]
721 } 728 }
722 } 729 }
723 730
724 test("cc_unittests") { 731 test("cc_unittests") {
725 sources = [ 732 sources = [
733 "animation/animation_host_unittest.cc",
734 "animation/animation_player_unittest.cc",
735 "animation/animation_timeline_unittest.cc",
726 "animation/animation_unittest.cc", 736 "animation/animation_unittest.cc",
727 "animation/keyframed_animation_curve_unittest.cc", 737 "animation/keyframed_animation_curve_unittest.cc",
728 "animation/layer_animation_controller_unittest.cc", 738 "animation/layer_animation_controller_unittest.cc",
729 "animation/scroll_offset_animation_curve_unittest.cc", 739 "animation/scroll_offset_animation_curve_unittest.cc",
730 "animation/scrollbar_animation_controller_linear_fade_unittest.cc", 740 "animation/scrollbar_animation_controller_linear_fade_unittest.cc",
731 "animation/scrollbar_animation_controller_thinning_unittest.cc", 741 "animation/scrollbar_animation_controller_thinning_unittest.cc",
732 "animation/transform_operations_unittest.cc", 742 "animation/transform_operations_unittest.cc",
733 "base/float_quad_unittest.cc", 743 "base/float_quad_unittest.cc",
734 "base/math_util_unittest.cc", 744 "base/math_util_unittest.cc",
735 "base/region_unittest.cc", 745 "base/region_unittest.cc",
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
821 "trees/damage_tracker_unittest.cc", 831 "trees/damage_tracker_unittest.cc",
822 "trees/layer_tree_host_common_unittest.cc", 832 "trees/layer_tree_host_common_unittest.cc",
823 "trees/layer_tree_host_impl_unittest.cc", 833 "trees/layer_tree_host_impl_unittest.cc",
824 "trees/layer_tree_host_pixeltest_blending.cc", 834 "trees/layer_tree_host_pixeltest_blending.cc",
825 "trees/layer_tree_host_pixeltest_filters.cc", 835 "trees/layer_tree_host_pixeltest_filters.cc",
826 "trees/layer_tree_host_pixeltest_masks.cc", 836 "trees/layer_tree_host_pixeltest_masks.cc",
827 "trees/layer_tree_host_pixeltest_readback.cc", 837 "trees/layer_tree_host_pixeltest_readback.cc",
828 "trees/layer_tree_host_pixeltest_synchronous.cc", 838 "trees/layer_tree_host_pixeltest_synchronous.cc",
829 "trees/layer_tree_host_unittest.cc", 839 "trees/layer_tree_host_unittest.cc",
830 "trees/layer_tree_host_unittest_animation.cc", 840 "trees/layer_tree_host_unittest_animation.cc",
841 "trees/layer_tree_host_unittest_animation_timelines.cc",
831 "trees/layer_tree_host_unittest_context.cc", 842 "trees/layer_tree_host_unittest_context.cc",
832 "trees/layer_tree_host_unittest_copyrequest.cc", 843 "trees/layer_tree_host_unittest_copyrequest.cc",
833 "trees/layer_tree_host_unittest_damage.cc", 844 "trees/layer_tree_host_unittest_damage.cc",
834 "trees/layer_tree_host_unittest_delegated.cc", 845 "trees/layer_tree_host_unittest_delegated.cc",
835 "trees/layer_tree_host_unittest_no_message_loop.cc", 846 "trees/layer_tree_host_unittest_no_message_loop.cc",
836 "trees/layer_tree_host_unittest_occlusion.cc", 847 "trees/layer_tree_host_unittest_occlusion.cc",
837 "trees/layer_tree_host_unittest_picture.cc", 848 "trees/layer_tree_host_unittest_picture.cc",
838 "trees/layer_tree_host_unittest_proxy.cc", 849 "trees/layer_tree_host_unittest_proxy.cc",
839 "trees/layer_tree_host_unittest_scroll.cc", 850 "trees/layer_tree_host_unittest_scroll.cc",
840 "trees/layer_tree_host_unittest_video.cc", 851 "trees/layer_tree_host_unittest_video.cc",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
911 "//testing/gmock", 922 "//testing/gmock",
912 "//testing/gtest", 923 "//testing/gtest",
913 "//testing/perf", 924 "//testing/perf",
914 "//ui/gfx", 925 "//ui/gfx",
915 "//ui/gfx/geometry", 926 "//ui/gfx/geometry",
916 "//ui/gl", 927 "//ui/gl",
917 ] 928 ]
918 } 929 }
919 # When adding support for isolates, please have a look at run-time dependencies 930 # When adding support for isolates, please have a look at run-time dependencies
920 # in the cc_unittests_run target in cc_tests.gyp. 931 # 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.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698