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 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
704 "test/remote_proto_channel_bridge.cc", | 704 "test/remote_proto_channel_bridge.cc", |
705 "test/remote_proto_channel_bridge.h", | 705 "test/remote_proto_channel_bridge.h", |
706 "test/render_pass_test_utils.cc", | 706 "test/render_pass_test_utils.cc", |
707 "test/render_pass_test_utils.h", | 707 "test/render_pass_test_utils.h", |
708 "test/scheduler_test_common.cc", | 708 "test/scheduler_test_common.cc", |
709 "test/scheduler_test_common.h", | 709 "test/scheduler_test_common.h", |
710 "test/skia_common.cc", | 710 "test/skia_common.cc", |
711 "test/skia_common.h", | 711 "test/skia_common.h", |
712 "test/solid_color_content_layer_client.cc", | 712 "test/solid_color_content_layer_client.cc", |
713 "test/solid_color_content_layer_client.h", | 713 "test/solid_color_content_layer_client.h", |
| 714 "test/stub_layer_tree_host_client.cc", |
| 715 "test/stub_layer_tree_host_client.h", |
| 716 "test/stub_layer_tree_host_single_thread_client.cc", |
| 717 "test/stub_layer_tree_host_single_thread_client.h", |
714 "test/surface_aggregator_test_helpers.cc", | 718 "test/surface_aggregator_test_helpers.cc", |
715 "test/surface_aggregator_test_helpers.h", | 719 "test/surface_aggregator_test_helpers.h", |
716 "test/surface_hittest_test_helpers.cc", | 720 "test/surface_hittest_test_helpers.cc", |
717 "test/surface_hittest_test_helpers.h", | 721 "test/surface_hittest_test_helpers.h", |
718 "test/task_graph_runner_test_template.cc", | 722 "test/task_graph_runner_test_template.cc", |
719 "test/task_graph_runner_test_template.h", | 723 "test/task_graph_runner_test_template.h", |
720 "test/test_context_provider.cc", | 724 "test/test_context_provider.cc", |
721 "test/test_context_provider.h", | 725 "test/test_context_provider.h", |
722 "test/test_context_support.cc", | 726 "test/test_context_support.cc", |
723 "test/test_context_support.h", | 727 "test/test_context_support.h", |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1032 "//ui/gfx/geometry", | 1036 "//ui/gfx/geometry", |
1033 "//ui/gl", | 1037 "//ui/gl", |
1034 "//ui/gl:test_support", | 1038 "//ui/gl:test_support", |
1035 ] | 1039 ] |
1036 | 1040 |
1037 # This target should not require the Chrome executable to run. | 1041 # This target should not require the Chrome executable to run. |
1038 assert_no_deps = [ "//chrome" ] | 1042 assert_no_deps = [ "//chrome" ] |
1039 } | 1043 } |
1040 # When adding support for isolates, please have a look at run-time dependencies | 1044 # When adding support for isolates, please have a look at run-time dependencies |
1041 # in the cc_unittests_run target in cc_tests.gyp. | 1045 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |