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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("cc") { | 8 component("cc") { |
9 sources = [ | 9 sources = [ |
10 "animation/animation.cc", | 10 "animation/animation.cc", |
11 "animation/animation.h", | 11 "animation/animation.h", |
12 "animation/animation_curve.cc", | 12 "animation/animation_curve.cc", |
13 "animation/animation_curve.h", | 13 "animation/animation_curve.h", |
14 "animation/animation_delegate.h", | 14 "animation/animation_delegate.h", |
15 "animation/animation_events.cc", | 15 "animation/animation_events.cc", |
16 "animation/animation_events.h", | 16 "animation/animation_events.h", |
17 "animation/animation_host.cc", | 17 "animation/animation_host.cc", |
18 "animation/animation_host.h", | 18 "animation/animation_host.h", |
19 "animation/animation_id_provider.cc", | 19 "animation/animation_id_provider.cc", |
20 "animation/animation_id_provider.h", | 20 "animation/animation_id_provider.h", |
21 "animation/animation_player.cc", | 21 "animation/animation_player.cc", |
22 "animation/animation_player.h", | 22 "animation/animation_player.h", |
23 "animation/animation_timeline.cc", | 23 "animation/animation_timeline.cc", |
24 "animation/animation_timeline.h", | 24 "animation/animation_timeline.h", |
25 "animation/element_animations.cc", | 25 "animation/element_animations.cc", |
26 "animation/element_animations.h", | 26 "animation/element_animations.h", |
| 27 "animation/element_id.cc", |
| 28 "animation/element_id.h", |
27 "animation/keyframed_animation_curve.cc", | 29 "animation/keyframed_animation_curve.cc", |
28 "animation/keyframed_animation_curve.h", | 30 "animation/keyframed_animation_curve.h", |
29 "animation/scroll_offset_animation_curve.cc", | 31 "animation/scroll_offset_animation_curve.cc", |
30 "animation/scroll_offset_animation_curve.h", | 32 "animation/scroll_offset_animation_curve.h", |
31 "animation/scroll_offset_animations.cc", | 33 "animation/scroll_offset_animations.cc", |
32 "animation/scroll_offset_animations.h", | 34 "animation/scroll_offset_animations.h", |
33 "animation/scroll_offset_animations_impl.cc", | 35 "animation/scroll_offset_animations_impl.cc", |
34 "animation/scroll_offset_animations_impl.h", | 36 "animation/scroll_offset_animations_impl.h", |
35 "animation/target_property.cc", | 37 "animation/target_property.cc", |
36 "animation/target_property.h", | 38 "animation/target_property.h", |
(...skipping 991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1028 "//ui/gfx/geometry", | 1030 "//ui/gfx/geometry", |
1029 "//ui/gl", | 1031 "//ui/gl", |
1030 "//ui/gl:test_support", | 1032 "//ui/gl:test_support", |
1031 ] | 1033 ] |
1032 | 1034 |
1033 # This target should not require the Chrome executable to run. | 1035 # This target should not require the Chrome executable to run. |
1034 assert_no_deps = [ "//chrome" ] | 1036 assert_no_deps = [ "//chrome" ] |
1035 } | 1037 } |
1036 # When adding support for isolates, please have a look at run-time dependencies | 1038 # When adding support for isolates, please have a look at run-time dependencies |
1037 # in the cc_unittests_run target in cc_tests.gyp. | 1039 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |