| 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 component("cc") { | 5 component("cc") { |
| 6 sources = [ | 6 sources = [ |
| 7 "animation/animation.cc", | 7 "animation/animation.cc", |
| 8 "animation/animation.h", | 8 "animation/animation.h", |
| 9 "animation/animation_curve.cc", | 9 "animation/animation_curve.cc", |
| 10 "animation/animation_curve.h", | 10 "animation/animation_curve.h", |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "debug/traced_picture.h", | 106 "debug/traced_picture.h", |
| 107 "debug/traced_value.cc", | 107 "debug/traced_value.cc", |
| 108 "debug/traced_value.h", | 108 "debug/traced_value.h", |
| 109 "debug/unittest_only_benchmark.cc", | 109 "debug/unittest_only_benchmark.cc", |
| 110 "debug/unittest_only_benchmark.h", | 110 "debug/unittest_only_benchmark.h", |
| 111 "debug/unittest_only_benchmark_impl.cc", | 111 "debug/unittest_only_benchmark_impl.cc", |
| 112 "debug/unittest_only_benchmark_impl.h", | 112 "debug/unittest_only_benchmark_impl.h", |
| 113 "input/input_handler.h", | 113 "input/input_handler.h", |
| 114 "input/page_scale_animation.cc", | 114 "input/page_scale_animation.cc", |
| 115 "input/page_scale_animation.h", | 115 "input/page_scale_animation.h", |
| 116 "input/layer_selection_bound.cc", |
| 117 "input/layer_selection_bound.h", |
| 118 "input/selection_bound_type.h", |
| 116 "input/top_controls_manager.cc", | 119 "input/top_controls_manager.cc", |
| 117 "input/top_controls_manager.h", | 120 "input/top_controls_manager.h", |
| 118 "input/top_controls_manager_client.h", | 121 "input/top_controls_manager_client.h", |
| 119 "layers/append_quads_data.h", | 122 "layers/append_quads_data.h", |
| 120 "layers/content_layer.cc", | 123 "layers/content_layer.cc", |
| 121 "layers/content_layer.h", | 124 "layers/content_layer.h", |
| 122 "layers/content_layer_client.h", | 125 "layers/content_layer_client.h", |
| 123 "layers/contents_scaling_layer.cc", | 126 "layers/contents_scaling_layer.cc", |
| 124 "layers/contents_scaling_layer.h", | 127 "layers/contents_scaling_layer.h", |
| 125 "layers/delegated_frame_provider.cc", | 128 "layers/delegated_frame_provider.cc", |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 "output/renderer.cc", | 264 "output/renderer.cc", |
| 262 "output/renderer.h", | 265 "output/renderer.h", |
| 263 "output/shader.cc", | 266 "output/shader.cc", |
| 264 "output/shader.h", | 267 "output/shader.h", |
| 265 "output/software_frame_data.cc", | 268 "output/software_frame_data.cc", |
| 266 "output/software_frame_data.h", | 269 "output/software_frame_data.h", |
| 267 "output/software_output_device.cc", | 270 "output/software_output_device.cc", |
| 268 "output/software_output_device.h", | 271 "output/software_output_device.h", |
| 269 "output/software_renderer.cc", | 272 "output/software_renderer.cc", |
| 270 "output/software_renderer.h", | 273 "output/software_renderer.h", |
| 274 "output/viewport_selection_bound.cc", |
| 275 "output/viewport_selection_bound.h", |
| 271 "quads/checkerboard_draw_quad.cc", | 276 "quads/checkerboard_draw_quad.cc", |
| 272 "quads/checkerboard_draw_quad.h", | 277 "quads/checkerboard_draw_quad.h", |
| 273 "quads/content_draw_quad_base.cc", | 278 "quads/content_draw_quad_base.cc", |
| 274 "quads/content_draw_quad_base.h", | 279 "quads/content_draw_quad_base.h", |
| 275 "quads/debug_border_draw_quad.cc", | 280 "quads/debug_border_draw_quad.cc", |
| 276 "quads/debug_border_draw_quad.h", | 281 "quads/debug_border_draw_quad.h", |
| 277 "quads/draw_quad.cc", | 282 "quads/draw_quad.cc", |
| 278 "quads/draw_quad.h", | 283 "quads/draw_quad.h", |
| 279 "quads/io_surface_draw_quad.cc", | 284 "quads/io_surface_draw_quad.cc", |
| 280 "quads/io_surface_draw_quad.h", | 285 "quads/io_surface_draw_quad.h", |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 "//ui/gfx", | 781 "//ui/gfx", |
| 777 "//ui/gfx/geometry", | 782 "//ui/gfx/geometry", |
| 778 ] | 783 ] |
| 779 } | 784 } |
| 780 | 785 |
| 781 test("cc_perftests") { | 786 test("cc_perftests") { |
| 782 # TODO(GYP) | 787 # TODO(GYP) |
| 783 } | 788 } |
| 784 | 789 |
| 785 } # if false | 790 } # if false |
| OLD | NEW |