| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 "output/compositor_frame_metadata.h", | 211 "output/compositor_frame_metadata.h", |
| 212 "output/context_cache_controller.cc", | 212 "output/context_cache_controller.cc", |
| 213 "output/context_cache_controller.h", | 213 "output/context_cache_controller.h", |
| 214 "output/context_provider.h", | 214 "output/context_provider.h", |
| 215 "output/copy_output_request.cc", | 215 "output/copy_output_request.cc", |
| 216 "output/copy_output_request.h", | 216 "output/copy_output_request.h", |
| 217 "output/copy_output_result.cc", | 217 "output/copy_output_result.cc", |
| 218 "output/copy_output_result.h", | 218 "output/copy_output_result.h", |
| 219 "output/delegated_frame_data.cc", | 219 "output/delegated_frame_data.cc", |
| 220 "output/delegated_frame_data.h", | 220 "output/delegated_frame_data.h", |
| 221 "output/delegating_renderer.cc", | |
| 222 "output/delegating_renderer.h", | |
| 223 "output/direct_renderer.cc", | 221 "output/direct_renderer.cc", |
| 224 "output/direct_renderer.h", | 222 "output/direct_renderer.h", |
| 225 "output/dynamic_geometry_binding.cc", | 223 "output/dynamic_geometry_binding.cc", |
| 226 "output/dynamic_geometry_binding.h", | 224 "output/dynamic_geometry_binding.h", |
| 227 "output/filter_operation.cc", | 225 "output/filter_operation.cc", |
| 228 "output/filter_operation.h", | 226 "output/filter_operation.h", |
| 229 "output/filter_operations.cc", | 227 "output/filter_operations.cc", |
| 230 "output/filter_operations.h", | 228 "output/filter_operations.h", |
| 231 "output/geometry_binding.cc", | 229 "output/geometry_binding.cc", |
| 232 "output/geometry_binding.h", | 230 "output/geometry_binding.h", |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 848 "layers/texture_layer_unittest.cc", | 846 "layers/texture_layer_unittest.cc", |
| 849 "layers/ui_resource_layer_impl_unittest.cc", | 847 "layers/ui_resource_layer_impl_unittest.cc", |
| 850 "layers/ui_resource_layer_unittest.cc", | 848 "layers/ui_resource_layer_unittest.cc", |
| 851 "layers/video_frame_provider_client_impl_unittest.cc", | 849 "layers/video_frame_provider_client_impl_unittest.cc", |
| 852 "layers/video_layer_impl_unittest.cc", | 850 "layers/video_layer_impl_unittest.cc", |
| 853 "layers/viewport_unittest.cc", | 851 "layers/viewport_unittest.cc", |
| 854 "output/begin_frame_args_unittest.cc", | 852 "output/begin_frame_args_unittest.cc", |
| 855 "output/bsp_tree_unittest.cc", | 853 "output/bsp_tree_unittest.cc", |
| 856 "output/buffer_to_texture_target_map_unittest.cc", | 854 "output/buffer_to_texture_target_map_unittest.cc", |
| 857 "output/context_cache_controller_unittest.cc", | 855 "output/context_cache_controller_unittest.cc", |
| 858 "output/delegating_renderer_unittest.cc", | |
| 859 "output/filter_operations_unittest.cc", | 856 "output/filter_operations_unittest.cc", |
| 860 "output/gl_renderer_unittest.cc", | 857 "output/gl_renderer_unittest.cc", |
| 861 "output/layer_quad_unittest.cc", | 858 "output/layer_quad_unittest.cc", |
| 862 "output/managed_memory_policy_unittest.cc", | 859 "output/managed_memory_policy_unittest.cc", |
| 863 "output/output_surface_unittest.cc", | 860 "output/output_surface_unittest.cc", |
| 864 "output/overlay_unittest.cc", | 861 "output/overlay_unittest.cc", |
| 865 "output/renderer_pixeltest.cc", | 862 "output/renderer_pixeltest.cc", |
| 866 "output/renderer_settings_unittest.cc", | 863 "output/renderer_settings_unittest.cc", |
| 867 "output/shader_unittest.cc", | 864 "output/shader_unittest.cc", |
| 868 "output/software_renderer_unittest.cc", | 865 "output/software_renderer_unittest.cc", |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1035 "//ui/gfx/geometry", | 1032 "//ui/gfx/geometry", |
| 1036 "//ui/gl", | 1033 "//ui/gl", |
| 1037 "//ui/gl:test_support", | 1034 "//ui/gl:test_support", |
| 1038 ] | 1035 ] |
| 1039 | 1036 |
| 1040 # This target should not require the Chrome executable to run. | 1037 # This target should not require the Chrome executable to run. |
| 1041 assert_no_deps = [ "//chrome" ] | 1038 assert_no_deps = [ "//chrome" ] |
| 1042 } | 1039 } |
| 1043 # 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 |
| 1044 # in the cc_unittests_run target in cc_tests.gyp. | 1041 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |