| 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 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 "test/fake_tile_manager_client.cc", | 650 "test/fake_tile_manager_client.cc", |
| 651 "test/fake_tile_manager_client.h", | 651 "test/fake_tile_manager_client.h", |
| 652 "test/fake_tile_task_manager.cc", | 652 "test/fake_tile_task_manager.cc", |
| 653 "test/fake_tile_task_manager.h", | 653 "test/fake_tile_task_manager.h", |
| 654 "test/fake_ui_resource_layer_tree_host_impl.cc", | 654 "test/fake_ui_resource_layer_tree_host_impl.cc", |
| 655 "test/fake_ui_resource_layer_tree_host_impl.h", | 655 "test/fake_ui_resource_layer_tree_host_impl.h", |
| 656 "test/fake_video_frame_provider.cc", | 656 "test/fake_video_frame_provider.cc", |
| 657 "test/fake_video_frame_provider.h", | 657 "test/fake_video_frame_provider.h", |
| 658 "test/geometry_test_utils.cc", | 658 "test/geometry_test_utils.cc", |
| 659 "test/geometry_test_utils.h", | 659 "test/geometry_test_utils.h", |
| 660 "test/layer_internals_for_test.cc", |
| 661 "test/layer_internals_for_test.h", |
| 660 "test/layer_test_common.cc", | 662 "test/layer_test_common.cc", |
| 661 "test/layer_test_common.h", | 663 "test/layer_test_common.h", |
| 662 "test/layer_tree_host_common_test.cc", | 664 "test/layer_tree_host_common_test.cc", |
| 663 "test/layer_tree_host_common_test.h", | 665 "test/layer_tree_host_common_test.h", |
| 664 "test/layer_tree_json_parser.cc", | 666 "test/layer_tree_json_parser.cc", |
| 665 "test/layer_tree_json_parser.h", | 667 "test/layer_tree_json_parser.h", |
| 666 "test/layer_tree_pixel_resource_test.cc", | 668 "test/layer_tree_pixel_resource_test.cc", |
| 667 "test/layer_tree_pixel_resource_test.h", | 669 "test/layer_tree_pixel_resource_test.h", |
| 668 "test/layer_tree_pixel_test.cc", | 670 "test/layer_tree_pixel_test.cc", |
| 669 "test/layer_tree_pixel_test.h", | 671 "test/layer_tree_pixel_test.h", |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 "//ui/gfx/geometry", | 1032 "//ui/gfx/geometry", |
| 1031 "//ui/gl", | 1033 "//ui/gl", |
| 1032 "//ui/gl:test_support", | 1034 "//ui/gl:test_support", |
| 1033 ] | 1035 ] |
| 1034 | 1036 |
| 1035 # This target should not require the Chrome executable to run. | 1037 # This target should not require the Chrome executable to run. |
| 1036 assert_no_deps = [ "//chrome" ] | 1038 assert_no_deps = [ "//chrome" ] |
| 1037 } | 1039 } |
| 1038 # When adding support for isolates, please have a look at run-time dependencies | 1040 # When adding support for isolates, please have a look at run-time dependencies |
| 1039 # in the cc_unittests_run target in cc_tests.gyp. | 1041 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |