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 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
861 "layers/texture_layer_impl_unittest.cc", | 861 "layers/texture_layer_impl_unittest.cc", |
862 "layers/texture_layer_unittest.cc", | 862 "layers/texture_layer_unittest.cc", |
863 "layers/ui_resource_layer_impl_unittest.cc", | 863 "layers/ui_resource_layer_impl_unittest.cc", |
864 "layers/ui_resource_layer_unittest.cc", | 864 "layers/ui_resource_layer_unittest.cc", |
865 "layers/video_frame_provider_client_impl_unittest.cc", | 865 "layers/video_frame_provider_client_impl_unittest.cc", |
866 "layers/video_layer_impl_unittest.cc", | 866 "layers/video_layer_impl_unittest.cc", |
867 "layers/viewport_unittest.cc", | 867 "layers/viewport_unittest.cc", |
868 "output/begin_frame_args_unittest.cc", | 868 "output/begin_frame_args_unittest.cc", |
869 "output/bsp_tree_unittest.cc", | 869 "output/bsp_tree_unittest.cc", |
870 "output/buffer_to_texture_target_map_unittest.cc", | 870 "output/buffer_to_texture_target_map_unittest.cc", |
| 871 "output/compositor_frame_sink_unittest.cc", |
871 "output/context_cache_controller_unittest.cc", | 872 "output/context_cache_controller_unittest.cc", |
872 "output/filter_operations_unittest.cc", | 873 "output/filter_operations_unittest.cc", |
873 "output/gl_renderer_unittest.cc", | 874 "output/gl_renderer_unittest.cc", |
874 "output/layer_quad_unittest.cc", | 875 "output/layer_quad_unittest.cc", |
875 "output/managed_memory_policy_unittest.cc", | 876 "output/managed_memory_policy_unittest.cc", |
876 "output/output_surface_unittest.cc", | 877 "output/output_surface_unittest.cc", |
877 "output/overlay_unittest.cc", | 878 "output/overlay_unittest.cc", |
878 "output/renderer_pixeltest.cc", | 879 "output/renderer_pixeltest.cc", |
879 "output/renderer_settings_unittest.cc", | 880 "output/renderer_settings_unittest.cc", |
880 "output/shader_unittest.cc", | 881 "output/shader_unittest.cc", |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1053 "//ui/gl:test_support", | 1054 "//ui/gl:test_support", |
1054 ] | 1055 ] |
1055 | 1056 |
1056 # This target should not require the Chrome executable to run. | 1057 # This target should not require the Chrome executable to run. |
1057 assert_no_deps = [ "//chrome" ] | 1058 assert_no_deps = [ "//chrome" ] |
1058 | 1059 |
1059 data = [ | 1060 data = [ |
1060 "test/data/", | 1061 "test/data/", |
1061 ] | 1062 ] |
1062 } | 1063 } |
OLD | NEW |