| 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", |
| 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 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 "trees/layer_tree_host.cc", | 500 "trees/layer_tree_host.cc", |
| 495 "trees/layer_tree_host.h", | 501 "trees/layer_tree_host.h", |
| 496 "trees/layer_tree_host_client.h", | 502 "trees/layer_tree_host_client.h", |
| 497 "trees/layer_tree_host_common.cc", | 503 "trees/layer_tree_host_common.cc", |
| 498 "trees/layer_tree_host_common.h", | 504 "trees/layer_tree_host_common.h", |
| 499 "trees/layer_tree_host_impl.cc", | 505 "trees/layer_tree_host_impl.cc", |
| 500 "trees/layer_tree_host_impl.h", | 506 "trees/layer_tree_host_impl.h", |
| 501 "trees/layer_tree_host_single_thread_client.h", | 507 "trees/layer_tree_host_single_thread_client.h", |
| 502 "trees/layer_tree_impl.cc", | 508 "trees/layer_tree_impl.cc", |
| 503 "trees/layer_tree_impl.h", | 509 "trees/layer_tree_impl.h", |
| 510 "trees/layer_tree_mutators_client.h", |
| 504 "trees/layer_tree_settings.cc", | 511 "trees/layer_tree_settings.cc", |
| 505 "trees/layer_tree_settings.h", | 512 "trees/layer_tree_settings.h", |
| 506 "trees/occlusion.cc", | 513 "trees/occlusion.cc", |
| 507 "trees/occlusion.h", | 514 "trees/occlusion.h", |
| 508 "trees/occlusion_tracker.cc", | 515 "trees/occlusion_tracker.cc", |
| 509 "trees/occlusion_tracker.h", | 516 "trees/occlusion_tracker.h", |
| 510 "trees/property_tree.cc", | 517 "trees/property_tree.cc", |
| 511 "trees/property_tree.h", | 518 "trees/property_tree.h", |
| 512 "trees/property_tree_builder.cc", | 519 "trees/property_tree_builder.cc", |
| 513 "trees/property_tree_builder.h", | 520 "trees/property_tree_builder.h", |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 718 "//ui/gl", | 725 "//ui/gl", |
| 719 ] | 726 ] |
| 720 | 727 |
| 721 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. | 728 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. |
| 722 deps += [ "//third_party/mesa:osmesa" ] | 729 deps += [ "//third_party/mesa:osmesa" ] |
| 723 } | 730 } |
| 724 } | 731 } |
| 725 | 732 |
| 726 test("cc_unittests") { | 733 test("cc_unittests") { |
| 727 sources = [ | 734 sources = [ |
| 735 "animation/animation_host_unittest.cc", |
| 736 "animation/animation_player_unittest.cc", |
| 737 "animation/animation_timeline_unittest.cc", |
| 728 "animation/animation_unittest.cc", | 738 "animation/animation_unittest.cc", |
| 729 "animation/keyframed_animation_curve_unittest.cc", | 739 "animation/keyframed_animation_curve_unittest.cc", |
| 730 "animation/layer_animation_controller_unittest.cc", | 740 "animation/layer_animation_controller_unittest.cc", |
| 731 "animation/scroll_offset_animation_curve_unittest.cc", | 741 "animation/scroll_offset_animation_curve_unittest.cc", |
| 732 "animation/scrollbar_animation_controller_linear_fade_unittest.cc", | 742 "animation/scrollbar_animation_controller_linear_fade_unittest.cc", |
| 733 "animation/scrollbar_animation_controller_thinning_unittest.cc", | 743 "animation/scrollbar_animation_controller_thinning_unittest.cc", |
| 734 "animation/transform_operations_unittest.cc", | 744 "animation/transform_operations_unittest.cc", |
| 735 "base/float_quad_unittest.cc", | 745 "base/float_quad_unittest.cc", |
| 736 "base/histograms_unittest.cc", | 746 "base/histograms_unittest.cc", |
| 737 "base/math_util_unittest.cc", | 747 "base/math_util_unittest.cc", |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 "//testing/gmock", | 927 "//testing/gmock", |
| 918 "//testing/gtest", | 928 "//testing/gtest", |
| 919 "//testing/perf", | 929 "//testing/perf", |
| 920 "//ui/gfx", | 930 "//ui/gfx", |
| 921 "//ui/gfx/geometry", | 931 "//ui/gfx/geometry", |
| 922 "//ui/gl", | 932 "//ui/gl", |
| 923 ] | 933 ] |
| 924 } | 934 } |
| 925 # When adding support for isolates, please have a look at run-time dependencies | 935 # When adding support for isolates, please have a look at run-time dependencies |
| 926 # in the cc_unittests_run target in cc_tests.gyp. | 936 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |