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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
695 "test/fake_ui_resource_layer_tree_host_impl.cc", | 695 "test/fake_ui_resource_layer_tree_host_impl.cc", |
696 "test/fake_ui_resource_layer_tree_host_impl.h", | 696 "test/fake_ui_resource_layer_tree_host_impl.h", |
697 "test/fake_video_frame_provider.cc", | 697 "test/fake_video_frame_provider.cc", |
698 "test/fake_video_frame_provider.h", | 698 "test/fake_video_frame_provider.h", |
699 "test/geometry_test_utils.cc", | 699 "test/geometry_test_utils.cc", |
700 "test/geometry_test_utils.h", | 700 "test/geometry_test_utils.h", |
701 "test/layer_internals_for_test.cc", | 701 "test/layer_internals_for_test.cc", |
702 "test/layer_internals_for_test.h", | 702 "test/layer_internals_for_test.h", |
703 "test/layer_test_common.cc", | 703 "test/layer_test_common.cc", |
704 "test/layer_test_common.h", | 704 "test/layer_test_common.h", |
| 705 "test/layer_tree_host_remote_for_testing.cc", |
| 706 "test/layer_tree_host_remote_for_testing.h", |
705 "test/layer_tree_json_parser.cc", | 707 "test/layer_tree_json_parser.cc", |
706 "test/layer_tree_json_parser.h", | 708 "test/layer_tree_json_parser.h", |
707 "test/layer_tree_pixel_resource_test.cc", | 709 "test/layer_tree_pixel_resource_test.cc", |
708 "test/layer_tree_pixel_resource_test.h", | 710 "test/layer_tree_pixel_resource_test.h", |
709 "test/layer_tree_pixel_test.cc", | 711 "test/layer_tree_pixel_test.cc", |
710 "test/layer_tree_pixel_test.h", | 712 "test/layer_tree_pixel_test.h", |
711 "test/layer_tree_settings_for_testing.cc", | 713 "test/layer_tree_settings_for_testing.cc", |
712 "test/layer_tree_settings_for_testing.h", | 714 "test/layer_tree_settings_for_testing.h", |
713 "test/layer_tree_test.cc", | 715 "test/layer_tree_test.cc", |
714 "test/layer_tree_test.h", | 716 "test/layer_tree_test.h", |
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1078 "//ui/gl:test_support", | 1080 "//ui/gl:test_support", |
1079 ] | 1081 ] |
1080 | 1082 |
1081 # This target should not require the Chrome executable to run. | 1083 # This target should not require the Chrome executable to run. |
1082 assert_no_deps = [ "//chrome" ] | 1084 assert_no_deps = [ "//chrome" ] |
1083 | 1085 |
1084 data = [ | 1086 data = [ |
1085 "test/data/", | 1087 "test/data/", |
1086 ] | 1088 ] |
1087 } | 1089 } |
OLD | NEW |