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

Side by Side Diff: cc/BUILD.gn

Issue 485043003: cc: Use correct message loop proxy in BlockingTaskRunner (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits. Created 6 years, 3 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/cc.gyp » ('j') | no next file with comments »
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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 "resources/scoped_gpu_raster.h", 392 "resources/scoped_gpu_raster.h",
393 "resources/scoped_resource.cc", 393 "resources/scoped_resource.cc",
394 "resources/scoped_resource.h", 394 "resources/scoped_resource.h",
395 "resources/scoped_ui_resource.cc", 395 "resources/scoped_ui_resource.cc",
396 "resources/scoped_ui_resource.h", 396 "resources/scoped_ui_resource.h",
397 "resources/shared_bitmap.cc", 397 "resources/shared_bitmap.cc",
398 "resources/shared_bitmap.h", 398 "resources/shared_bitmap.h",
399 "resources/shared_bitmap_manager.h", 399 "resources/shared_bitmap_manager.h",
400 "resources/single_release_callback.cc", 400 "resources/single_release_callback.cc",
401 "resources/single_release_callback.h", 401 "resources/single_release_callback.h",
402 "resources/single_release_callback_impl.cc",
403 "resources/single_release_callback_impl.h",
402 "resources/skpicture_content_layer_updater.cc", 404 "resources/skpicture_content_layer_updater.cc",
403 "resources/skpicture_content_layer_updater.h", 405 "resources/skpicture_content_layer_updater.h",
404 "resources/task_graph_runner.cc", 406 "resources/task_graph_runner.cc",
405 "resources/task_graph_runner.h", 407 "resources/task_graph_runner.h",
406 "resources/texture_mailbox.cc", 408 "resources/texture_mailbox.cc",
407 "resources/texture_mailbox_deleter.cc", 409 "resources/texture_mailbox_deleter.cc",
408 "resources/texture_mailbox_deleter.h", 410 "resources/texture_mailbox_deleter.h",
409 "resources/texture_mailbox.h", 411 "resources/texture_mailbox.h",
410 "resources/texture_uploader.cc", 412 "resources/texture_uploader.cc",
411 "resources/texture_uploader.h", 413 "resources/texture_uploader.h",
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 "resources/texture_mailbox_deleter_unittest.cc", 719 "resources/texture_mailbox_deleter_unittest.cc",
718 "resources/texture_uploader_unittest.cc", 720 "resources/texture_uploader_unittest.cc",
719 "resources/tile_manager_unittest.cc", 721 "resources/tile_manager_unittest.cc",
720 "resources/tile_priority_unittest.cc", 722 "resources/tile_priority_unittest.cc",
721 "resources/video_resource_updater_unittest.cc", 723 "resources/video_resource_updater_unittest.cc",
722 "scheduler/delay_based_time_source_unittest.cc", 724 "scheduler/delay_based_time_source_unittest.cc",
723 "scheduler/scheduler_state_machine_unittest.cc", 725 "scheduler/scheduler_state_machine_unittest.cc",
724 "scheduler/scheduler_unittest.cc", 726 "scheduler/scheduler_unittest.cc",
725 "test/layer_tree_json_parser_unittest.cc", 727 "test/layer_tree_json_parser_unittest.cc",
726 "test/test_web_graphics_context_3d_unittest.cc", 728 "test/test_web_graphics_context_3d_unittest.cc",
729 "trees/blocking_task_runner_unittest.cc",
727 "trees/damage_tracker_unittest.cc", 730 "trees/damage_tracker_unittest.cc",
728 "trees/layer_sorter_unittest.cc", 731 "trees/layer_sorter_unittest.cc",
729 "trees/layer_tree_host_common_unittest.cc", 732 "trees/layer_tree_host_common_unittest.cc",
730 "trees/layer_tree_host_impl_unittest.cc", 733 "trees/layer_tree_host_impl_unittest.cc",
731 "trees/layer_tree_host_pixeltest_blending.cc", 734 "trees/layer_tree_host_pixeltest_blending.cc",
732 "trees/layer_tree_host_pixeltest_filters.cc", 735 "trees/layer_tree_host_pixeltest_filters.cc",
733 "trees/layer_tree_host_pixeltest_masks.cc", 736 "trees/layer_tree_host_pixeltest_masks.cc",
734 "trees/layer_tree_host_pixeltest_on_demand_raster.cc", 737 "trees/layer_tree_host_pixeltest_on_demand_raster.cc",
735 "trees/layer_tree_host_pixeltest_readback.cc", 738 "trees/layer_tree_host_pixeltest_readback.cc",
736 "trees/layer_tree_host_unittest.cc", 739 "trees/layer_tree_host_unittest.cc",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 "//gpu/command_buffer/common:gles2_utils", 806 "//gpu/command_buffer/common:gles2_utils",
804 "//media", 807 "//media",
805 "//skia", 808 "//skia",
806 "//testing/gmock", 809 "//testing/gmock",
807 "//testing/gtest", 810 "//testing/gtest",
808 "//testing/perf", 811 "//testing/perf",
809 "//ui/gfx", 812 "//ui/gfx",
810 "//ui/gfx/geometry", 813 "//ui/gfx/geometry",
811 ] 814 ]
812 } 815 }
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698