Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: cc/BUILD.gn

Issue 367833003: cc: Start using raster/eviction iterators. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | cc/base/tiling_data.cc » ('j') | cc/resources/tile_manager.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 "resources/picture_pile_base.h", 340 "resources/picture_pile_base.h",
341 "resources/picture_pile_impl.cc", 341 "resources/picture_pile_impl.cc",
342 "resources/picture_pile_impl.h", 342 "resources/picture_pile_impl.h",
343 "resources/pixel_buffer_raster_worker_pool.cc", 343 "resources/pixel_buffer_raster_worker_pool.cc",
344 "resources/pixel_buffer_raster_worker_pool.h", 344 "resources/pixel_buffer_raster_worker_pool.h",
345 "resources/platform_color.h", 345 "resources/platform_color.h",
346 "resources/prioritized_resource.cc", 346 "resources/prioritized_resource.cc",
347 "resources/prioritized_resource.h", 347 "resources/prioritized_resource.h",
348 "resources/prioritized_resource_manager.cc", 348 "resources/prioritized_resource_manager.cc",
349 "resources/prioritized_resource_manager.h", 349 "resources/prioritized_resource_manager.h",
350 "resources/prioritized_tile_set.cc",
351 "resources/prioritized_tile_set.h",
352 "resources/priority_calculator.cc", 350 "resources/priority_calculator.cc",
353 "resources/priority_calculator.h", 351 "resources/priority_calculator.h",
354 "resources/raster_mode.cc", 352 "resources/raster_mode.cc",
355 "resources/raster_mode.h", 353 "resources/raster_mode.h",
356 "resources/raster_worker_pool.cc", 354 "resources/raster_worker_pool.cc",
357 "resources/raster_worker_pool.h", 355 "resources/raster_worker_pool.h",
358 "resources/rasterizer.cc", 356 "resources/rasterizer.cc",
359 "resources/rasterizer.h", 357 "resources/rasterizer.h",
360 "resources/release_callback.h", 358 "resources/release_callback.h",
361 "resources/resource.cc", 359 "resources/resource.cc",
(...skipping 29 matching lines...) Expand all
391 "resources/texture_mailbox_deleter.cc", 389 "resources/texture_mailbox_deleter.cc",
392 "resources/texture_mailbox_deleter.h", 390 "resources/texture_mailbox_deleter.h",
393 "resources/texture_uploader.cc", 391 "resources/texture_uploader.cc",
394 "resources/texture_uploader.h", 392 "resources/texture_uploader.h",
395 "resources/tile.cc", 393 "resources/tile.cc",
396 "resources/tile.h", 394 "resources/tile.h",
397 "resources/tile_manager.cc", 395 "resources/tile_manager.cc",
398 "resources/tile_manager.h", 396 "resources/tile_manager.h",
399 "resources/tile_priority.cc", 397 "resources/tile_priority.cc",
400 "resources/tile_priority.h", 398 "resources/tile_priority.h",
399 "resources/tile_priority_queue.cc",
400 "resources/tile_priority_queue.h",
401 "resources/transferable_resource.cc", 401 "resources/transferable_resource.cc",
402 "resources/transferable_resource.h", 402 "resources/transferable_resource.h",
403 "resources/ui_resource_bitmap.cc", 403 "resources/ui_resource_bitmap.cc",
404 "resources/ui_resource_bitmap.h", 404 "resources/ui_resource_bitmap.h",
405 "resources/ui_resource_client.h", 405 "resources/ui_resource_client.h",
406 "resources/ui_resource_request.cc", 406 "resources/ui_resource_request.cc",
407 "resources/ui_resource_request.h", 407 "resources/ui_resource_request.h",
408 "resources/video_resource_updater.cc", 408 "resources/video_resource_updater.cc",
409 "resources/video_resource_updater.h", 409 "resources/video_resource_updater.h",
410 "scheduler/delay_based_time_source.cc", 410 "scheduler/delay_based_time_source.cc",
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 "output/software_renderer_unittest.cc", 705 "output/software_renderer_unittest.cc",
706 "quads/draw_quad_unittest.cc", 706 "quads/draw_quad_unittest.cc",
707 "quads/render_pass_unittest.cc", 707 "quads/render_pass_unittest.cc",
708 "resources/layer_quad_unittest.cc", 708 "resources/layer_quad_unittest.cc",
709 "resources/picture_layer_tiling_set_unittest.cc", 709 "resources/picture_layer_tiling_set_unittest.cc",
710 "resources/picture_layer_tiling_unittest.cc", 710 "resources/picture_layer_tiling_unittest.cc",
711 "resources/picture_pile_impl_unittest.cc", 711 "resources/picture_pile_impl_unittest.cc",
712 "resources/picture_pile_unittest.cc", 712 "resources/picture_pile_unittest.cc",
713 "resources/picture_unittest.cc", 713 "resources/picture_unittest.cc",
714 "resources/prioritized_resource_unittest.cc", 714 "resources/prioritized_resource_unittest.cc",
715 "resources/prioritized_tile_set_unittest.cc",
716 "resources/raster_worker_pool_unittest.cc", 715 "resources/raster_worker_pool_unittest.cc",
717 "resources/resource_provider_unittest.cc", 716 "resources/resource_provider_unittest.cc",
718 "resources/resource_update_controller_unittest.cc", 717 "resources/resource_update_controller_unittest.cc",
719 "resources/scoped_resource_unittest.cc", 718 "resources/scoped_resource_unittest.cc",
720 "resources/task_graph_runner_unittest.cc", 719 "resources/task_graph_runner_unittest.cc",
721 "resources/texture_mailbox_deleter_unittest.cc", 720 "resources/texture_mailbox_deleter_unittest.cc",
722 "resources/texture_uploader_unittest.cc", 721 "resources/texture_uploader_unittest.cc",
723 "resources/tile_manager_unittest.cc", 722 "resources/tile_manager_unittest.cc",
724 "resources/tile_priority_unittest.cc", 723 "resources/tile_priority_unittest.cc",
725 "resources/video_resource_updater_unittest.cc", 724 "resources/video_resource_updater_unittest.cc",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
780 "//ui/gfx", 779 "//ui/gfx",
781 "//ui/gfx/geometry", 780 "//ui/gfx/geometry",
782 ] 781 ]
783 } 782 }
784 783
785 test("cc_perftests") { 784 test("cc_perftests") {
786 # TODO(GYP) 785 # TODO(GYP)
787 } 786 }
788 787
789 } # if false 788 } # if false
OLDNEW
« no previous file with comments | « no previous file | cc/base/tiling_data.cc » ('j') | cc/resources/tile_manager.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698