| 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 "layers/ui_resource_layer_impl.h", | 208 "layers/ui_resource_layer_impl.h", |
| 209 "layers/video_frame_provider.h", | 209 "layers/video_frame_provider.h", |
| 210 "layers/video_frame_provider_client_impl.cc", | 210 "layers/video_frame_provider_client_impl.cc", |
| 211 "layers/video_frame_provider_client_impl.h", | 211 "layers/video_frame_provider_client_impl.h", |
| 212 "layers/video_layer.cc", | 212 "layers/video_layer.cc", |
| 213 "layers/video_layer.h", | 213 "layers/video_layer.h", |
| 214 "layers/video_layer_impl.cc", | 214 "layers/video_layer_impl.cc", |
| 215 "layers/video_layer_impl.h", | 215 "layers/video_layer_impl.h", |
| 216 "output/begin_frame_args.cc", | 216 "output/begin_frame_args.cc", |
| 217 "output/begin_frame_args.h", | 217 "output/begin_frame_args.h", |
| 218 "output/bsp_tree.cc", |
| 219 "output/bsp_tree.h", |
| 220 "output/bsp_walk_action.cc", |
| 221 "output/bsp_walk_action.h", |
| 218 "output/compositor_frame.cc", | 222 "output/compositor_frame.cc", |
| 219 "output/compositor_frame.h", | 223 "output/compositor_frame.h", |
| 220 "output/compositor_frame_ack.cc", | 224 "output/compositor_frame_ack.cc", |
| 221 "output/compositor_frame_ack.h", | 225 "output/compositor_frame_ack.h", |
| 222 "output/compositor_frame_metadata.cc", | 226 "output/compositor_frame_metadata.cc", |
| 223 "output/compositor_frame_metadata.h", | 227 "output/compositor_frame_metadata.h", |
| 224 "output/context_provider.cc", | 228 "output/context_provider.cc", |
| 225 "output/context_provider.h", | 229 "output/context_provider.h", |
| 226 "output/copy_output_request.cc", | 230 "output/copy_output_request.cc", |
| 227 "output/copy_output_request.h", | 231 "output/copy_output_request.h", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 "output/software_renderer.cc", | 276 "output/software_renderer.cc", |
| 273 "output/software_renderer.h", | 277 "output/software_renderer.h", |
| 274 "output/viewport_selection_bound.cc", | 278 "output/viewport_selection_bound.cc", |
| 275 "output/viewport_selection_bound.h", | 279 "output/viewport_selection_bound.h", |
| 276 "quads/checkerboard_draw_quad.cc", | 280 "quads/checkerboard_draw_quad.cc", |
| 277 "quads/checkerboard_draw_quad.h", | 281 "quads/checkerboard_draw_quad.h", |
| 278 "quads/content_draw_quad_base.cc", | 282 "quads/content_draw_quad_base.cc", |
| 279 "quads/content_draw_quad_base.h", | 283 "quads/content_draw_quad_base.h", |
| 280 "quads/debug_border_draw_quad.cc", | 284 "quads/debug_border_draw_quad.cc", |
| 281 "quads/debug_border_draw_quad.h", | 285 "quads/debug_border_draw_quad.h", |
| 286 "quads/draw_polygon.cc", |
| 287 "quads/draw_polygon.h", |
| 282 "quads/draw_quad.cc", | 288 "quads/draw_quad.cc", |
| 283 "quads/draw_quad.h", | 289 "quads/draw_quad.h", |
| 284 "quads/io_surface_draw_quad.cc", | 290 "quads/io_surface_draw_quad.cc", |
| 285 "quads/io_surface_draw_quad.h", | 291 "quads/io_surface_draw_quad.h", |
| 286 "quads/picture_draw_quad.cc", | 292 "quads/picture_draw_quad.cc", |
| 287 "quads/picture_draw_quad.h", | 293 "quads/picture_draw_quad.h", |
| 288 "quads/render_pass.cc", | 294 "quads/render_pass.cc", |
| 289 "quads/render_pass.h", | 295 "quads/render_pass.h", |
| 290 "quads/render_pass_draw_quad.cc", | 296 "quads/render_pass_draw_quad.cc", |
| 291 "quads/render_pass_draw_quad.h", | 297 "quads/render_pass_draw_quad.h", |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 787 "//gpu:test_support", | 793 "//gpu:test_support", |
| 788 "//media", | 794 "//media", |
| 789 "//skia", | 795 "//skia", |
| 790 "//testing/gmock", | 796 "//testing/gmock", |
| 791 "//testing/gtest", | 797 "//testing/gtest", |
| 792 "//testing/perf", | 798 "//testing/perf", |
| 793 "//ui/gfx", | 799 "//ui/gfx", |
| 794 "//ui/gfx/geometry", | 800 "//ui/gfx/geometry", |
| 795 ] | 801 ] |
| 796 } | 802 } |
| OLD | NEW |