| 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 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 "animation/layer_animation_controller_unittest.cc", | 719 "animation/layer_animation_controller_unittest.cc", |
| 720 "animation/scroll_offset_animation_curve_unittest.cc", | 720 "animation/scroll_offset_animation_curve_unittest.cc", |
| 721 "animation/scrollbar_animation_controller_linear_fade_unittest.cc", | 721 "animation/scrollbar_animation_controller_linear_fade_unittest.cc", |
| 722 "animation/scrollbar_animation_controller_thinning_unittest.cc", | 722 "animation/scrollbar_animation_controller_thinning_unittest.cc", |
| 723 "animation/transform_operations_unittest.cc", | 723 "animation/transform_operations_unittest.cc", |
| 724 "base/delayed_unique_notifier_unittest.cc", | 724 "base/delayed_unique_notifier_unittest.cc", |
| 725 "base/float_quad_unittest.cc", | 725 "base/float_quad_unittest.cc", |
| 726 "base/histograms_unittest.cc", | 726 "base/histograms_unittest.cc", |
| 727 "base/list_container_unittest.cc", | 727 "base/list_container_unittest.cc", |
| 728 "base/math_util_unittest.cc", | 728 "base/math_util_unittest.cc", |
| 729 "base/observer_map_unittest.cc", |
| 729 "base/region_unittest.cc", | 730 "base/region_unittest.cc", |
| 730 "base/rolling_time_delta_history_unittest.cc", | 731 "base/rolling_time_delta_history_unittest.cc", |
| 731 "base/scoped_ptr_vector_unittest.cc", | 732 "base/scoped_ptr_vector_unittest.cc", |
| 732 "base/sidecar_list_container_unittest.cc", | 733 "base/sidecar_list_container_unittest.cc", |
| 733 "base/simple_enclosed_region_unittest.cc", | 734 "base/simple_enclosed_region_unittest.cc", |
| 734 "base/tiling_data_unittest.cc", | 735 "base/tiling_data_unittest.cc", |
| 735 "base/unique_notifier_unittest.cc", | 736 "base/unique_notifier_unittest.cc", |
| 736 "debug/frame_timing_tracker_unittest.cc", | 737 "debug/frame_timing_tracker_unittest.cc", |
| 737 "debug/micro_benchmark_controller_unittest.cc", | 738 "debug/micro_benchmark_controller_unittest.cc", |
| 738 "debug/rendering_stats_unittest.cc", | 739 "debug/rendering_stats_unittest.cc", |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 929 "//ui/gl", | 930 "//ui/gl", |
| 930 "//ui/gl:test_support", | 931 "//ui/gl:test_support", |
| 931 ] | 932 ] |
| 932 | 933 |
| 933 if (is_android) { | 934 if (is_android) { |
| 934 isolate_file = "cc_perftests.isolate" | 935 isolate_file = "cc_perftests.isolate" |
| 935 } | 936 } |
| 936 } | 937 } |
| 937 # When adding support for isolates, please have a look at run-time dependencies | 938 # When adding support for isolates, please have a look at run-time dependencies |
| 938 # in the cc_unittests_run target in cc_tests.gyp. | 939 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |