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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 "debug/benchmark_instrumentation.cc", | 71 "debug/benchmark_instrumentation.cc", |
72 "debug/benchmark_instrumentation.h", | 72 "debug/benchmark_instrumentation.h", |
73 "debug/debug_colors.cc", | 73 "debug/debug_colors.cc", |
74 "debug/debug_colors.h", | 74 "debug/debug_colors.h", |
75 "debug/debug_rect_history.cc", | 75 "debug/debug_rect_history.cc", |
76 "debug/debug_rect_history.h", | 76 "debug/debug_rect_history.h", |
77 "debug/devtools_instrumentation.h", | 77 "debug/devtools_instrumentation.h", |
78 "debug/frame_rate_counter.cc", | 78 "debug/frame_rate_counter.cc", |
79 "debug/frame_rate_counter.h", | 79 "debug/frame_rate_counter.h", |
80 "debug/frame_viewer_instrumentation.h", | 80 "debug/frame_viewer_instrumentation.h", |
| 81 "debug/frame_viewer_instrumentation.cc", |
81 "debug/invalidation_benchmark.cc", | 82 "debug/invalidation_benchmark.cc", |
82 "debug/invalidation_benchmark.h", | 83 "debug/invalidation_benchmark.h", |
83 "debug/lap_timer.cc", | 84 "debug/lap_timer.cc", |
84 "debug/lap_timer.h", | 85 "debug/lap_timer.h", |
85 "debug/layer_tree_debug_state.cc", | 86 "debug/layer_tree_debug_state.cc", |
86 "debug/layer_tree_debug_state.h", | 87 "debug/layer_tree_debug_state.h", |
87 "debug/micro_benchmark.cc", | 88 "debug/micro_benchmark.cc", |
88 "debug/micro_benchmark.h", | 89 "debug/micro_benchmark.h", |
89 "debug/micro_benchmark_impl.cc", | 90 "debug/micro_benchmark_impl.cc", |
90 "debug/micro_benchmark_impl.h", | 91 "debug/micro_benchmark_impl.h", |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 "resources/display_list_recording_source.cc", | 344 "resources/display_list_recording_source.cc", |
344 "resources/display_list_recording_source.h", | 345 "resources/display_list_recording_source.h", |
345 "resources/drawing_display_item.cc", | 346 "resources/drawing_display_item.cc", |
346 "resources/drawing_display_item.h", | 347 "resources/drawing_display_item.h", |
347 "resources/eviction_tile_priority_queue.cc", | 348 "resources/eviction_tile_priority_queue.cc", |
348 "resources/eviction_tile_priority_queue.h", | 349 "resources/eviction_tile_priority_queue.h", |
349 "resources/filter_display_item.cc", | 350 "resources/filter_display_item.cc", |
350 "resources/filter_display_item.h", | 351 "resources/filter_display_item.h", |
351 "resources/gpu_raster_worker_pool.cc", | 352 "resources/gpu_raster_worker_pool.cc", |
352 "resources/gpu_raster_worker_pool.h", | 353 "resources/gpu_raster_worker_pool.h", |
| 354 "resources/gpu_rasterizer.cc", |
| 355 "resources/gpu_rasterizer.h", |
353 "resources/image_layer_updater.cc", | 356 "resources/image_layer_updater.cc", |
354 "resources/image_layer_updater.h", | 357 "resources/image_layer_updater.h", |
355 "resources/layer_painter.h", | 358 "resources/layer_painter.h", |
356 "resources/layer_quad.cc", | 359 "resources/layer_quad.cc", |
357 "resources/layer_quad.h", | 360 "resources/layer_quad.h", |
358 "resources/layer_tiling_data.cc", | 361 "resources/layer_tiling_data.cc", |
359 "resources/layer_tiling_data.h", | 362 "resources/layer_tiling_data.h", |
360 "resources/layer_updater.cc", | 363 "resources/layer_updater.cc", |
361 "resources/layer_updater.h", | 364 "resources/layer_updater.h", |
362 "resources/managed_tile_state.cc", | 365 "resources/managed_tile_state.cc", |
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
870 "//media", | 873 "//media", |
871 "//skia", | 874 "//skia", |
872 "//testing/gmock", | 875 "//testing/gmock", |
873 "//testing/gtest", | 876 "//testing/gtest", |
874 "//testing/perf", | 877 "//testing/perf", |
875 "//ui/gfx", | 878 "//ui/gfx", |
876 "//ui/gfx/geometry", | 879 "//ui/gfx/geometry", |
877 "//ui/gl", | 880 "//ui/gl", |
878 ] | 881 ] |
879 } | 882 } |
OLD | NEW |