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", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 "animation/transform_operations.h", | 42 "animation/transform_operations.h", |
43 "debug/benchmark_instrumentation.cc", | 43 "debug/benchmark_instrumentation.cc", |
44 "debug/benchmark_instrumentation.h", | 44 "debug/benchmark_instrumentation.h", |
45 "debug/debug_colors.cc", | 45 "debug/debug_colors.cc", |
46 "debug/debug_colors.h", | 46 "debug/debug_colors.h", |
47 "debug/debug_rect_history.cc", | 47 "debug/debug_rect_history.cc", |
48 "debug/debug_rect_history.h", | 48 "debug/debug_rect_history.h", |
49 "debug/devtools_instrumentation.h", | 49 "debug/devtools_instrumentation.h", |
50 "debug/frame_rate_counter.cc", | 50 "debug/frame_rate_counter.cc", |
51 "debug/frame_rate_counter.h", | 51 "debug/frame_rate_counter.h", |
52 "debug/frame_timing_request.cc", | |
53 "debug/frame_timing_request.h", | |
54 "debug/frame_timing_tracker.cc", | |
55 "debug/frame_timing_tracker.h", | |
56 "debug/frame_viewer_instrumentation.cc", | 52 "debug/frame_viewer_instrumentation.cc", |
57 "debug/frame_viewer_instrumentation.h", | 53 "debug/frame_viewer_instrumentation.h", |
58 "debug/invalidation_benchmark.cc", | 54 "debug/invalidation_benchmark.cc", |
59 "debug/invalidation_benchmark.h", | 55 "debug/invalidation_benchmark.h", |
60 "debug/lap_timer.cc", | 56 "debug/lap_timer.cc", |
61 "debug/lap_timer.h", | 57 "debug/lap_timer.h", |
62 "debug/layer_tree_debug_state.cc", | 58 "debug/layer_tree_debug_state.cc", |
63 "debug/layer_tree_debug_state.h", | 59 "debug/layer_tree_debug_state.h", |
64 "debug/micro_benchmark.cc", | 60 "debug/micro_benchmark.cc", |
65 "debug/micro_benchmark.h", | 61 "debug/micro_benchmark.h", |
(...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
778 "base/histograms_unittest.cc", | 774 "base/histograms_unittest.cc", |
779 "base/list_container_unittest.cc", | 775 "base/list_container_unittest.cc", |
780 "base/math_util_unittest.cc", | 776 "base/math_util_unittest.cc", |
781 "base/random_access_list_container_unittest.cc", | 777 "base/random_access_list_container_unittest.cc", |
782 "base/region_unittest.cc", | 778 "base/region_unittest.cc", |
783 "base/rolling_time_delta_history_unittest.cc", | 779 "base/rolling_time_delta_history_unittest.cc", |
784 "base/rtree_unittest.cc", | 780 "base/rtree_unittest.cc", |
785 "base/simple_enclosed_region_unittest.cc", | 781 "base/simple_enclosed_region_unittest.cc", |
786 "base/tiling_data_unittest.cc", | 782 "base/tiling_data_unittest.cc", |
787 "base/unique_notifier_unittest.cc", | 783 "base/unique_notifier_unittest.cc", |
788 "debug/frame_timing_tracker_unittest.cc", | |
789 "debug/layer_tree_debug_state_unittest.cc", | 784 "debug/layer_tree_debug_state_unittest.cc", |
790 "debug/micro_benchmark_controller_unittest.cc", | 785 "debug/micro_benchmark_controller_unittest.cc", |
791 "debug/rendering_stats_unittest.cc", | 786 "debug/rendering_stats_unittest.cc", |
792 "input/layer_selection_bound_unittest.cc", | 787 "input/layer_selection_bound_unittest.cc", |
793 "input/scroll_state_unittest.cc", | 788 "input/scroll_state_unittest.cc", |
794 "input/scrollbar_animation_controller_linear_fade_unittest.cc", | 789 "input/scrollbar_animation_controller_linear_fade_unittest.cc", |
795 "input/scrollbar_animation_controller_thinning_unittest.cc", | 790 "input/scrollbar_animation_controller_thinning_unittest.cc", |
796 "input/top_controls_manager_unittest.cc", | 791 "input/top_controls_manager_unittest.cc", |
797 "layers/heads_up_display_layer_impl_unittest.cc", | 792 "layers/heads_up_display_layer_impl_unittest.cc", |
798 "layers/heads_up_display_unittest.cc", | 793 "layers/heads_up_display_unittest.cc", |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1002 "//ui/gl", | 997 "//ui/gl", |
1003 "//ui/gl:test_support", | 998 "//ui/gl:test_support", |
1004 ] | 999 ] |
1005 | 1000 |
1006 if (is_android) { | 1001 if (is_android) { |
1007 isolate_file = "cc_perftests.isolate" | 1002 isolate_file = "cc_perftests.isolate" |
1008 } | 1003 } |
1009 } | 1004 } |
1010 # 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 |
1011 # in the cc_unittests_run target in cc_tests.gyp. | 1006 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |