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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 "layers/layer_impl.cc", | 133 "layers/layer_impl.cc", |
134 "layers/layer_impl.h", | 134 "layers/layer_impl.h", |
135 "layers/layer_iterator.h", | 135 "layers/layer_iterator.h", |
136 "layers/layer_list_iterator.cc", | 136 "layers/layer_list_iterator.cc", |
137 "layers/layer_list_iterator.h", | 137 "layers/layer_list_iterator.h", |
138 "layers/layer_lists.h", | 138 "layers/layer_lists.h", |
139 "layers/layer_position_constraint.cc", | 139 "layers/layer_position_constraint.cc", |
140 "layers/layer_position_constraint.h", | 140 "layers/layer_position_constraint.h", |
141 "layers/layer_proto_converter.cc", | 141 "layers/layer_proto_converter.cc", |
142 "layers/layer_proto_converter.h", | 142 "layers/layer_proto_converter.h", |
143 "layers/layer_settings.cc", | |
144 "layers/layer_settings.h", | |
145 "layers/layer_utils.cc", | 143 "layers/layer_utils.cc", |
146 "layers/layer_utils.h", | 144 "layers/layer_utils.h", |
147 "layers/nine_patch_layer.cc", | 145 "layers/nine_patch_layer.cc", |
148 "layers/nine_patch_layer.h", | 146 "layers/nine_patch_layer.h", |
149 "layers/nine_patch_layer_impl.cc", | 147 "layers/nine_patch_layer_impl.cc", |
150 "layers/nine_patch_layer_impl.h", | 148 "layers/nine_patch_layer_impl.h", |
151 "layers/paint_properties.h", | 149 "layers/paint_properties.h", |
152 "layers/painted_scrollbar_layer.cc", | 150 "layers/painted_scrollbar_layer.cc", |
153 "layers/painted_scrollbar_layer.h", | 151 "layers/painted_scrollbar_layer.h", |
154 "layers/painted_scrollbar_layer_impl.cc", | 152 "layers/painted_scrollbar_layer_impl.cc", |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 "test/layer_test_common.cc", | 638 "test/layer_test_common.cc", |
641 "test/layer_test_common.h", | 639 "test/layer_test_common.h", |
642 "test/layer_tree_host_common_test.cc", | 640 "test/layer_tree_host_common_test.cc", |
643 "test/layer_tree_host_common_test.h", | 641 "test/layer_tree_host_common_test.h", |
644 "test/layer_tree_json_parser.cc", | 642 "test/layer_tree_json_parser.cc", |
645 "test/layer_tree_json_parser.h", | 643 "test/layer_tree_json_parser.h", |
646 "test/layer_tree_pixel_resource_test.cc", | 644 "test/layer_tree_pixel_resource_test.cc", |
647 "test/layer_tree_pixel_resource_test.h", | 645 "test/layer_tree_pixel_resource_test.h", |
648 "test/layer_tree_pixel_test.cc", | 646 "test/layer_tree_pixel_test.cc", |
649 "test/layer_tree_pixel_test.h", | 647 "test/layer_tree_pixel_test.h", |
650 "test/layer_tree_settings_for_testing.cc", | |
651 "test/layer_tree_settings_for_testing.h", | |
652 "test/layer_tree_test.cc", | 648 "test/layer_tree_test.cc", |
653 "test/layer_tree_test.h", | 649 "test/layer_tree_test.h", |
654 "test/mock_helper.h", | 650 "test/mock_helper.h", |
655 "test/mock_occlusion_tracker.h", | 651 "test/mock_occlusion_tracker.h", |
656 "test/ordered_simple_task_runner.cc", | 652 "test/ordered_simple_task_runner.cc", |
657 "test/ordered_simple_task_runner.h", | 653 "test/ordered_simple_task_runner.h", |
658 "test/ordered_texture_map.cc", | 654 "test/ordered_texture_map.cc", |
659 "test/ordered_texture_map.h", | 655 "test/ordered_texture_map.h", |
660 "test/paths.cc", | 656 "test/paths.cc", |
661 "test/paths.h", | 657 "test/paths.h", |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
994 "//ui/gl", | 990 "//ui/gl", |
995 "//ui/gl:test_support", | 991 "//ui/gl:test_support", |
996 ] | 992 ] |
997 | 993 |
998 if (is_android) { | 994 if (is_android) { |
999 isolate_file = "cc_perftests.isolate" | 995 isolate_file = "cc_perftests.isolate" |
1000 } | 996 } |
1001 } | 997 } |
1002 # When adding support for isolates, please have a look at run-time dependencies | 998 # When adding support for isolates, please have a look at run-time dependencies |
1003 # in the cc_unittests_run target in cc_tests.gyp. | 999 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |