| 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_registrar.cc", | |
| 24 "animation/animation_registrar.h", | |
| 25 "animation/animation_timeline.cc", | 23 "animation/animation_timeline.cc", |
| 26 "animation/animation_timeline.h", | 24 "animation/animation_timeline.h", |
| 27 "animation/element_animations.cc", | 25 "animation/element_animations.cc", |
| 28 "animation/element_animations.h", | 26 "animation/element_animations.h", |
| 29 "animation/keyframed_animation_curve.cc", | 27 "animation/keyframed_animation_curve.cc", |
| 30 "animation/keyframed_animation_curve.h", | 28 "animation/keyframed_animation_curve.h", |
| 31 "animation/layer_animation_controller.cc", | 29 "animation/layer_animation_controller.cc", |
| 32 "animation/layer_animation_controller.h", | 30 "animation/layer_animation_controller.h", |
| 33 "animation/layer_animation_event_observer.h", | 31 "animation/layer_animation_event_observer.h", |
| 34 "animation/layer_animation_value_observer.h", | 32 "animation/layer_animation_value_observer.h", |
| (...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1004 "//ui/gl", | 1002 "//ui/gl", |
| 1005 "//ui/gl:test_support", | 1003 "//ui/gl:test_support", |
| 1006 ] | 1004 ] |
| 1007 | 1005 |
| 1008 if (is_android) { | 1006 if (is_android) { |
| 1009 isolate_file = "cc_perftests.isolate" | 1007 isolate_file = "cc_perftests.isolate" |
| 1010 } | 1008 } |
| 1011 } | 1009 } |
| 1012 # When adding support for isolates, please have a look at run-time dependencies | 1010 # When adding support for isolates, please have a look at run-time dependencies |
| 1013 # in the cc_unittests_run target in cc_tests.gyp. | 1011 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |