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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 "debug/benchmark_instrumentation.cc", | 72 "debug/benchmark_instrumentation.cc", |
73 "debug/benchmark_instrumentation.h", | 73 "debug/benchmark_instrumentation.h", |
74 "debug/debug_colors.cc", | 74 "debug/debug_colors.cc", |
75 "debug/debug_colors.h", | 75 "debug/debug_colors.h", |
76 "debug/debug_rect_history.cc", | 76 "debug/debug_rect_history.cc", |
77 "debug/debug_rect_history.h", | 77 "debug/debug_rect_history.h", |
78 "debug/devtools_instrumentation.h", | 78 "debug/devtools_instrumentation.h", |
79 "debug/frame_rate_counter.cc", | 79 "debug/frame_rate_counter.cc", |
80 "debug/frame_rate_counter.h", | 80 "debug/frame_rate_counter.h", |
81 "debug/frame_viewer_instrumentation.h", | 81 "debug/frame_viewer_instrumentation.h", |
| 82 "debug/frame_viewer_instrumentation.cc", |
82 "debug/invalidation_benchmark.cc", | 83 "debug/invalidation_benchmark.cc", |
83 "debug/invalidation_benchmark.h", | 84 "debug/invalidation_benchmark.h", |
84 "debug/lap_timer.cc", | 85 "debug/lap_timer.cc", |
85 "debug/lap_timer.h", | 86 "debug/lap_timer.h", |
86 "debug/layer_tree_debug_state.cc", | 87 "debug/layer_tree_debug_state.cc", |
87 "debug/layer_tree_debug_state.h", | 88 "debug/layer_tree_debug_state.h", |
88 "debug/micro_benchmark.cc", | 89 "debug/micro_benchmark.cc", |
89 "debug/micro_benchmark.h", | 90 "debug/micro_benchmark.h", |
90 "debug/micro_benchmark_impl.cc", | 91 "debug/micro_benchmark_impl.cc", |
91 "debug/micro_benchmark_impl.h", | 92 "debug/micro_benchmark_impl.h", |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 "resources/display_list_raster_source.cc", | 343 "resources/display_list_raster_source.cc", |
343 "resources/display_list_raster_source.h", | 344 "resources/display_list_raster_source.h", |
344 "resources/display_list_recording_source.cc", | 345 "resources/display_list_recording_source.cc", |
345 "resources/display_list_recording_source.h", | 346 "resources/display_list_recording_source.h", |
346 "resources/drawing_display_item.cc", | 347 "resources/drawing_display_item.cc", |
347 "resources/drawing_display_item.h", | 348 "resources/drawing_display_item.h", |
348 "resources/eviction_tile_priority_queue.cc", | 349 "resources/eviction_tile_priority_queue.cc", |
349 "resources/eviction_tile_priority_queue.h", | 350 "resources/eviction_tile_priority_queue.h", |
350 "resources/filter_display_item.cc", | 351 "resources/filter_display_item.cc", |
351 "resources/filter_display_item.h", | 352 "resources/filter_display_item.h", |
| 353 "resources/rasterizer.h", |
| 354 "resources/gpu_rasterizer.cc", |
| 355 "resources/gpu_rasterizer.h", |
| 356 "resources/software_rasterizer.cc", |
| 357 "resources/software_rasterizer.h", |
352 "resources/gpu_tile_task_worker_pool.cc", | 358 "resources/gpu_tile_task_worker_pool.cc", |
353 "resources/gpu_tile_task_worker_pool.h", | 359 "resources/gpu_tile_task_worker_pool.h", |
354 "resources/image_layer_updater.cc", | 360 "resources/image_layer_updater.cc", |
355 "resources/image_layer_updater.h", | 361 "resources/image_layer_updater.h", |
356 "resources/layer_painter.h", | 362 "resources/layer_painter.h", |
357 "resources/layer_quad.cc", | 363 "resources/layer_quad.cc", |
358 "resources/layer_quad.h", | 364 "resources/layer_quad.h", |
359 "resources/layer_tiling_data.cc", | 365 "resources/layer_tiling_data.cc", |
360 "resources/layer_tiling_data.h", | 366 "resources/layer_tiling_data.h", |
361 "resources/layer_updater.cc", | 367 "resources/layer_updater.cc", |
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
875 "//media", | 881 "//media", |
876 "//skia", | 882 "//skia", |
877 "//testing/gmock", | 883 "//testing/gmock", |
878 "//testing/gtest", | 884 "//testing/gtest", |
879 "//testing/perf", | 885 "//testing/perf", |
880 "//ui/gfx", | 886 "//ui/gfx", |
881 "//ui/gfx/geometry", | 887 "//ui/gfx/geometry", |
882 "//ui/gl", | 888 "//ui/gl", |
883 ] | 889 ] |
884 } | 890 } |
OLD | NEW |