| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 "output/direct_renderer.cc", | 240 "output/direct_renderer.cc", |
| 241 "output/direct_renderer.h", | 241 "output/direct_renderer.h", |
| 242 "output/dynamic_geometry_binding.cc", | 242 "output/dynamic_geometry_binding.cc", |
| 243 "output/dynamic_geometry_binding.h", | 243 "output/dynamic_geometry_binding.h", |
| 244 "output/filter_operation.cc", | 244 "output/filter_operation.cc", |
| 245 "output/filter_operation.h", | 245 "output/filter_operation.h", |
| 246 "output/filter_operations.cc", | 246 "output/filter_operations.cc", |
| 247 "output/filter_operations.h", | 247 "output/filter_operations.h", |
| 248 "output/geometry_binding.cc", | 248 "output/geometry_binding.cc", |
| 249 "output/geometry_binding.h", | 249 "output/geometry_binding.h", |
| 250 "output/gl_frame_data.cc", | |
| 251 "output/gl_frame_data.h", | |
| 252 "output/gl_renderer.cc", | 250 "output/gl_renderer.cc", |
| 253 "output/gl_renderer.h", | 251 "output/gl_renderer.h", |
| 254 "output/gl_renderer_draw_cache.cc", | 252 "output/gl_renderer_draw_cache.cc", |
| 255 "output/gl_renderer_draw_cache.h", | 253 "output/gl_renderer_draw_cache.h", |
| 256 "output/latency_info_swap_promise.cc", | 254 "output/latency_info_swap_promise.cc", |
| 257 "output/latency_info_swap_promise.h", | 255 "output/latency_info_swap_promise.h", |
| 258 "output/layer_quad.cc", | 256 "output/layer_quad.cc", |
| 259 "output/layer_quad.h", | 257 "output/layer_quad.h", |
| 260 "output/managed_memory_policy.cc", | 258 "output/managed_memory_policy.cc", |
| 261 "output/managed_memory_policy.h", | 259 "output/managed_memory_policy.h", |
| 262 "output/output_surface.cc", | 260 "output/output_surface.cc", |
| 263 "output/output_surface.h", | 261 "output/output_surface.h", |
| 264 "output/output_surface_client.h", | 262 "output/output_surface_client.h", |
| 263 "output/output_surface_frame.cc", |
| 264 "output/output_surface_frame.h", |
| 265 "output/overlay_candidate.cc", | 265 "output/overlay_candidate.cc", |
| 266 "output/overlay_candidate.h", | 266 "output/overlay_candidate.h", |
| 267 "output/overlay_candidate_validator.h", | 267 "output/overlay_candidate_validator.h", |
| 268 "output/overlay_processor.cc", | 268 "output/overlay_processor.cc", |
| 269 "output/overlay_processor.h", | 269 "output/overlay_processor.h", |
| 270 "output/overlay_strategy_fullscreen.cc", | 270 "output/overlay_strategy_fullscreen.cc", |
| 271 "output/overlay_strategy_fullscreen.h", | 271 "output/overlay_strategy_fullscreen.h", |
| 272 "output/overlay_strategy_single_on_top.cc", | 272 "output/overlay_strategy_single_on_top.cc", |
| 273 "output/overlay_strategy_single_on_top.h", | 273 "output/overlay_strategy_single_on_top.h", |
| 274 "output/overlay_strategy_underlay.cc", | 274 "output/overlay_strategy_underlay.cc", |
| (...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 "//ui/gl:test_support", | 1080 "//ui/gl:test_support", |
| 1081 ] | 1081 ] |
| 1082 | 1082 |
| 1083 # This target should not require the Chrome executable to run. | 1083 # This target should not require the Chrome executable to run. |
| 1084 assert_no_deps = [ "//chrome" ] | 1084 assert_no_deps = [ "//chrome" ] |
| 1085 | 1085 |
| 1086 data = [ | 1086 data = [ |
| 1087 "test/data/", | 1087 "test/data/", |
| 1088 ] | 1088 ] |
| 1089 } | 1089 } |
| OLD | NEW |