| 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 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 "test/layer_test_common.cc", | 640 "test/layer_test_common.cc", |
| 641 "test/layer_test_common.h", | 641 "test/layer_test_common.h", |
| 642 "test/layer_tree_host_common_test.cc", | 642 "test/layer_tree_host_common_test.cc", |
| 643 "test/layer_tree_host_common_test.h", | 643 "test/layer_tree_host_common_test.h", |
| 644 "test/layer_tree_json_parser.cc", | 644 "test/layer_tree_json_parser.cc", |
| 645 "test/layer_tree_json_parser.h", | 645 "test/layer_tree_json_parser.h", |
| 646 "test/layer_tree_pixel_resource_test.cc", | 646 "test/layer_tree_pixel_resource_test.cc", |
| 647 "test/layer_tree_pixel_resource_test.h", | 647 "test/layer_tree_pixel_resource_test.h", |
| 648 "test/layer_tree_pixel_test.cc", | 648 "test/layer_tree_pixel_test.cc", |
| 649 "test/layer_tree_pixel_test.h", | 649 "test/layer_tree_pixel_test.h", |
| 650 "test/layer_tree_settings_for_testing.cc", |
| 651 "test/layer_tree_settings_for_testing.h", |
| 650 "test/layer_tree_test.cc", | 652 "test/layer_tree_test.cc", |
| 651 "test/layer_tree_test.h", | 653 "test/layer_tree_test.h", |
| 652 "test/mock_helper.h", | 654 "test/mock_helper.h", |
| 653 "test/mock_occlusion_tracker.h", | 655 "test/mock_occlusion_tracker.h", |
| 654 "test/ordered_simple_task_runner.cc", | 656 "test/ordered_simple_task_runner.cc", |
| 655 "test/ordered_simple_task_runner.h", | 657 "test/ordered_simple_task_runner.h", |
| 656 "test/ordered_texture_map.cc", | 658 "test/ordered_texture_map.cc", |
| 657 "test/ordered_texture_map.h", | 659 "test/ordered_texture_map.h", |
| 658 "test/paths.cc", | 660 "test/paths.cc", |
| 659 "test/paths.h", | 661 "test/paths.h", |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 992 "//ui/gl", | 994 "//ui/gl", |
| 993 "//ui/gl:test_support", | 995 "//ui/gl:test_support", |
| 994 ] | 996 ] |
| 995 | 997 |
| 996 if (is_android) { | 998 if (is_android) { |
| 997 isolate_file = "cc_perftests.isolate" | 999 isolate_file = "cc_perftests.isolate" |
| 998 } | 1000 } |
| 999 } | 1001 } |
| 1000 # When adding support for isolates, please have a look at run-time dependencies | 1002 # When adding support for isolates, please have a look at run-time dependencies |
| 1001 # in the cc_unittests_run target in cc_tests.gyp. | 1003 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |