OLD | NEW |
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", |
(...skipping 14 matching lines...) Expand all Loading... |
25 "animation/animation_timeline.h", | 25 "animation/animation_timeline.h", |
26 "animation/element_animations.cc", | 26 "animation/element_animations.cc", |
27 "animation/element_animations.h", | 27 "animation/element_animations.h", |
28 "animation/keyframed_animation_curve.cc", | 28 "animation/keyframed_animation_curve.cc", |
29 "animation/keyframed_animation_curve.h", | 29 "animation/keyframed_animation_curve.h", |
30 "animation/layer_animation_controller.cc", | 30 "animation/layer_animation_controller.cc", |
31 "animation/layer_animation_controller.h", | 31 "animation/layer_animation_controller.h", |
32 "animation/layer_animation_event_observer.h", | 32 "animation/layer_animation_event_observer.h", |
33 "animation/layer_animation_value_observer.h", | 33 "animation/layer_animation_value_observer.h", |
34 "animation/layer_animation_value_provider.h", | 34 "animation/layer_animation_value_provider.h", |
| 35 "animation/layer_tree_mutator.h", |
35 "animation/scroll_offset_animation_curve.cc", | 36 "animation/scroll_offset_animation_curve.cc", |
36 "animation/scroll_offset_animation_curve.h", | 37 "animation/scroll_offset_animation_curve.h", |
37 "animation/scrollbar_animation_controller.cc", | 38 "animation/scrollbar_animation_controller.cc", |
38 "animation/scrollbar_animation_controller.h", | 39 "animation/scrollbar_animation_controller.h", |
39 "animation/scrollbar_animation_controller_linear_fade.cc", | 40 "animation/scrollbar_animation_controller_linear_fade.cc", |
40 "animation/scrollbar_animation_controller_linear_fade.h", | 41 "animation/scrollbar_animation_controller_linear_fade.h", |
41 "animation/scrollbar_animation_controller_thinning.cc", | 42 "animation/scrollbar_animation_controller_thinning.cc", |
42 "animation/scrollbar_animation_controller_thinning.h", | 43 "animation/scrollbar_animation_controller_thinning.h", |
43 "animation/timing_function.cc", | 44 "animation/timing_function.cc", |
44 "animation/timing_function.h", | 45 "animation/timing_function.h", |
(...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
996 "//ui/gl", | 997 "//ui/gl", |
997 "//ui/gl:test_support", | 998 "//ui/gl:test_support", |
998 ] | 999 ] |
999 | 1000 |
1000 if (is_android) { | 1001 if (is_android) { |
1001 isolate_file = "cc_perftests.isolate" | 1002 isolate_file = "cc_perftests.isolate" |
1002 } | 1003 } |
1003 } | 1004 } |
1004 # When adding support for isolates, please have a look at run-time dependencies | 1005 # When adding support for isolates, please have a look at run-time dependencies |
1005 # in the cc_unittests_run target in cc_tests.gyp. | 1006 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |