| 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 881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 "layers/viewport_unittest.cc", | 892 "layers/viewport_unittest.cc", |
| 893 "output/begin_frame_args_unittest.cc", | 893 "output/begin_frame_args_unittest.cc", |
| 894 "output/bsp_tree_unittest.cc", | 894 "output/bsp_tree_unittest.cc", |
| 895 "output/buffer_to_texture_target_map_unittest.cc", | 895 "output/buffer_to_texture_target_map_unittest.cc", |
| 896 "output/compositor_frame_sink_unittest.cc", | 896 "output/compositor_frame_sink_unittest.cc", |
| 897 "output/context_cache_controller_unittest.cc", | 897 "output/context_cache_controller_unittest.cc", |
| 898 "output/filter_operations_unittest.cc", | 898 "output/filter_operations_unittest.cc", |
| 899 "output/gl_renderer_unittest.cc", | 899 "output/gl_renderer_unittest.cc", |
| 900 "output/layer_quad_unittest.cc", | 900 "output/layer_quad_unittest.cc", |
| 901 "output/managed_memory_policy_unittest.cc", | 901 "output/managed_memory_policy_unittest.cc", |
| 902 "output/output_surface_unittest.cc", | |
| 903 "output/overlay_unittest.cc", | 902 "output/overlay_unittest.cc", |
| 904 "output/renderer_pixeltest.cc", | 903 "output/renderer_pixeltest.cc", |
| 905 "output/renderer_settings_unittest.cc", | 904 "output/renderer_settings_unittest.cc", |
| 906 "output/shader_unittest.cc", | 905 "output/shader_unittest.cc", |
| 907 "output/software_renderer_unittest.cc", | 906 "output/software_renderer_unittest.cc", |
| 908 "output/texture_mailbox_deleter_unittest.cc", | 907 "output/texture_mailbox_deleter_unittest.cc", |
| 909 "playback/discardable_image_map_unittest.cc", | 908 "playback/discardable_image_map_unittest.cc", |
| 910 "playback/display_item_list_unittest.cc", | 909 "playback/display_item_list_unittest.cc", |
| 911 "playback/raster_source_unittest.cc", | 910 "playback/raster_source_unittest.cc", |
| 912 "playback/recording_source_unittest.cc", | 911 "playback/recording_source_unittest.cc", |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 "//ui/gl:test_support", | 1079 "//ui/gl:test_support", |
| 1081 ] | 1080 ] |
| 1082 | 1081 |
| 1083 # This target should not require the Chrome executable to run. | 1082 # This target should not require the Chrome executable to run. |
| 1084 assert_no_deps = [ "//chrome" ] | 1083 assert_no_deps = [ "//chrome" ] |
| 1085 | 1084 |
| 1086 data = [ | 1085 data = [ |
| 1087 "test/data/", | 1086 "test/data/", |
| 1088 ] | 1087 ] |
| 1089 } | 1088 } |
| OLD | NEW |