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

Side by Side Diff: cc/BUILD.gn

Issue 1337803002: cc: Adding BeginFrameObserverMap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase onto master. Created 5 years, 1 month 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
« 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("cc") { 7 component("cc") {
8 sources = [ 8 sources = [
9 "animation/animation.cc", 9 "animation/animation.cc",
10 "animation/animation.h", 10 "animation/animation.h",
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 "resources/texture_mailbox.h", 401 "resources/texture_mailbox.h",
402 "resources/transferable_resource.cc", 402 "resources/transferable_resource.cc",
403 "resources/transferable_resource.h", 403 "resources/transferable_resource.h",
404 "resources/ui_resource_bitmap.cc", 404 "resources/ui_resource_bitmap.cc",
405 "resources/ui_resource_bitmap.h", 405 "resources/ui_resource_bitmap.h",
406 "resources/ui_resource_client.h", 406 "resources/ui_resource_client.h",
407 "resources/ui_resource_request.cc", 407 "resources/ui_resource_request.cc",
408 "resources/ui_resource_request.h", 408 "resources/ui_resource_request.h",
409 "resources/video_resource_updater.cc", 409 "resources/video_resource_updater.cc",
410 "resources/video_resource_updater.h", 410 "resources/video_resource_updater.h",
411 "scheduler/begin_frame_observer_map.h",
411 "scheduler/begin_frame_source.cc", 412 "scheduler/begin_frame_source.cc",
412 "scheduler/begin_frame_source.h", 413 "scheduler/begin_frame_source.h",
413 "scheduler/begin_frame_tracker.cc", 414 "scheduler/begin_frame_tracker.cc",
414 "scheduler/begin_frame_tracker.h", 415 "scheduler/begin_frame_tracker.h",
415 "scheduler/commit_earlyout_reason.h", 416 "scheduler/commit_earlyout_reason.h",
416 "scheduler/compositor_timing_history.cc", 417 "scheduler/compositor_timing_history.cc",
417 "scheduler/compositor_timing_history.h", 418 "scheduler/compositor_timing_history.h",
418 "scheduler/delay_based_time_source.cc", 419 "scheduler/delay_based_time_source.cc",
419 "scheduler/delay_based_time_source.h", 420 "scheduler/delay_based_time_source.h",
420 "scheduler/draw_result.h", 421 "scheduler/draw_result.h",
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 "raster/scoped_gpu_raster_unittest.cc", 804 "raster/scoped_gpu_raster_unittest.cc",
804 "raster/task_graph_runner_unittest.cc", 805 "raster/task_graph_runner_unittest.cc",
805 "raster/texture_compressor_etc1_unittest.cc", 806 "raster/texture_compressor_etc1_unittest.cc",
806 "raster/tile_task_worker_pool_unittest.cc", 807 "raster/tile_task_worker_pool_unittest.cc",
807 "resources/platform_color_unittest.cc", 808 "resources/platform_color_unittest.cc",
808 "resources/resource_pool_unittest.cc", 809 "resources/resource_pool_unittest.cc",
809 "resources/resource_provider_unittest.cc", 810 "resources/resource_provider_unittest.cc",
810 "resources/resource_util_unittest.cc", 811 "resources/resource_util_unittest.cc",
811 "resources/scoped_resource_unittest.cc", 812 "resources/scoped_resource_unittest.cc",
812 "resources/video_resource_updater_unittest.cc", 813 "resources/video_resource_updater_unittest.cc",
814 "scheduler/begin_frame_observer_map_unittest.cc",
813 "scheduler/begin_frame_source_unittest.cc", 815 "scheduler/begin_frame_source_unittest.cc",
814 "scheduler/compositor_timing_history_unittest.cc", 816 "scheduler/compositor_timing_history_unittest.cc",
815 "scheduler/delay_based_time_source_unittest.cc", 817 "scheduler/delay_based_time_source_unittest.cc",
816 "scheduler/scheduler_state_machine_unittest.cc", 818 "scheduler/scheduler_state_machine_unittest.cc",
817 "scheduler/scheduler_unittest.cc", 819 "scheduler/scheduler_unittest.cc",
818 "test/layer_tree_json_parser_unittest.cc", 820 "test/layer_tree_json_parser_unittest.cc",
819 "test/ordered_simple_task_runner_unittest.cc", 821 "test/ordered_simple_task_runner_unittest.cc",
820 "test/test_web_graphics_context_3d_unittest.cc", 822 "test/test_web_graphics_context_3d_unittest.cc",
821 "tiles/picture_layer_tiling_set_unittest.cc", 823 "tiles/picture_layer_tiling_set_unittest.cc",
822 "tiles/picture_layer_tiling_unittest.cc", 824 "tiles/picture_layer_tiling_unittest.cc",
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
936 "//ui/gl", 938 "//ui/gl",
937 "//ui/gl:test_support", 939 "//ui/gl:test_support",
938 ] 940 ]
939 941
940 if (is_android) { 942 if (is_android) {
941 isolate_file = "cc_perftests.isolate" 943 isolate_file = "cc_perftests.isolate"
942 } 944 }
943 } 945 }
944 # When adding support for isolates, please have a look at run-time dependencies 946 # When adding support for isolates, please have a look at run-time dependencies
945 # in the cc_unittests_run target in cc_tests.gyp. 947 # in the cc_unittests_run target in cc_tests.gyp.
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