| 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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 "test/layer_test_common.cc", | 651 "test/layer_test_common.cc", |
| 652 "test/layer_test_common.h", | 652 "test/layer_test_common.h", |
| 653 "test/layer_tree_host_common_test.cc", | 653 "test/layer_tree_host_common_test.cc", |
| 654 "test/layer_tree_host_common_test.h", | 654 "test/layer_tree_host_common_test.h", |
| 655 "test/layer_tree_json_parser.cc", | 655 "test/layer_tree_json_parser.cc", |
| 656 "test/layer_tree_json_parser.h", | 656 "test/layer_tree_json_parser.h", |
| 657 "test/layer_tree_pixel_resource_test.cc", | 657 "test/layer_tree_pixel_resource_test.cc", |
| 658 "test/layer_tree_pixel_resource_test.h", | 658 "test/layer_tree_pixel_resource_test.h", |
| 659 "test/layer_tree_pixel_test.cc", | 659 "test/layer_tree_pixel_test.cc", |
| 660 "test/layer_tree_pixel_test.h", | 660 "test/layer_tree_pixel_test.h", |
| 661 "test/layer_tree_settings_for_testing.cc", |
| 662 "test/layer_tree_settings_for_testing.h", |
| 661 "test/layer_tree_test.cc", | 663 "test/layer_tree_test.cc", |
| 662 "test/layer_tree_test.h", | 664 "test/layer_tree_test.h", |
| 663 "test/mock_helper.h", | 665 "test/mock_helper.h", |
| 664 "test/mock_occlusion_tracker.h", | 666 "test/mock_occlusion_tracker.h", |
| 665 "test/ordered_simple_task_runner.cc", | 667 "test/ordered_simple_task_runner.cc", |
| 666 "test/ordered_simple_task_runner.h", | 668 "test/ordered_simple_task_runner.h", |
| 667 "test/ordered_texture_map.cc", | 669 "test/ordered_texture_map.cc", |
| 668 "test/ordered_texture_map.h", | 670 "test/ordered_texture_map.h", |
| 669 "test/paths.cc", | 671 "test/paths.cc", |
| 670 "test/paths.h", | 672 "test/paths.h", |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 996 "//testing/gtest", | 998 "//testing/gtest", |
| 997 "//testing/perf", | 999 "//testing/perf", |
| 998 "//ui/gfx", | 1000 "//ui/gfx", |
| 999 "//ui/gfx/geometry", | 1001 "//ui/gfx/geometry", |
| 1000 "//ui/gl", | 1002 "//ui/gl", |
| 1001 "//ui/gl:test_support", | 1003 "//ui/gl:test_support", |
| 1002 ] | 1004 ] |
| 1003 } | 1005 } |
| 1004 # When adding support for isolates, please have a look at run-time dependencies | 1006 # When adding support for isolates, please have a look at run-time dependencies |
| 1005 # in the cc_unittests_run target in cc_tests.gyp. | 1007 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |