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

Side by Side Diff: cc/BUILD.gn

Issue 1357373002: Add basic framework for splitting thread proxy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments. Created 5 years, 2 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
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | cc/cc.gyp » ('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 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 "tiles/tile_priority.cc", 444 "tiles/tile_priority.cc",
445 "tiles/tile_priority.h", 445 "tiles/tile_priority.h",
446 "tiles/tiling_set_eviction_queue.cc", 446 "tiles/tiling_set_eviction_queue.cc",
447 "tiles/tiling_set_eviction_queue.h", 447 "tiles/tiling_set_eviction_queue.h",
448 "tiles/tiling_set_raster_queue_all.cc", 448 "tiles/tiling_set_raster_queue_all.cc",
449 "tiles/tiling_set_raster_queue_all.h", 449 "tiles/tiling_set_raster_queue_all.h",
450 "tiles/tiling_set_raster_queue_required.cc", 450 "tiles/tiling_set_raster_queue_required.cc",
451 "tiles/tiling_set_raster_queue_required.h", 451 "tiles/tiling_set_raster_queue_required.h",
452 "trees/blocking_task_runner.cc", 452 "trees/blocking_task_runner.cc",
453 "trees/blocking_task_runner.h", 453 "trees/blocking_task_runner.h",
454 "trees/channel_impl.h",
455 "trees/channel_main.h",
454 "trees/damage_tracker.cc", 456 "trees/damage_tracker.cc",
455 "trees/damage_tracker.h", 457 "trees/damage_tracker.h",
456 "trees/draw_property_utils.cc", 458 "trees/draw_property_utils.cc",
457 "trees/draw_property_utils.h", 459 "trees/draw_property_utils.h",
458 "trees/latency_info_swap_promise_monitor.cc", 460 "trees/latency_info_swap_promise_monitor.cc",
459 "trees/latency_info_swap_promise_monitor.h", 461 "trees/latency_info_swap_promise_monitor.h",
460 "trees/layer_tree_host.cc", 462 "trees/layer_tree_host.cc",
461 "trees/layer_tree_host.h", 463 "trees/layer_tree_host.h",
462 "trees/layer_tree_host_client.h", 464 "trees/layer_tree_host_client.h",
463 "trees/layer_tree_host_common.cc", 465 "trees/layer_tree_host_common.cc",
464 "trees/layer_tree_host_common.h", 466 "trees/layer_tree_host_common.h",
465 "trees/layer_tree_host_impl.cc", 467 "trees/layer_tree_host_impl.cc",
466 "trees/layer_tree_host_impl.h", 468 "trees/layer_tree_host_impl.h",
467 "trees/layer_tree_host_single_thread_client.h", 469 "trees/layer_tree_host_single_thread_client.h",
468 "trees/layer_tree_impl.cc", 470 "trees/layer_tree_impl.cc",
469 "trees/layer_tree_impl.h", 471 "trees/layer_tree_impl.h",
470 "trees/layer_tree_settings.cc", 472 "trees/layer_tree_settings.cc",
471 "trees/layer_tree_settings.h", 473 "trees/layer_tree_settings.h",
472 "trees/mutator_host_client.h", 474 "trees/mutator_host_client.h",
473 "trees/occlusion.cc", 475 "trees/occlusion.cc",
474 "trees/occlusion.h", 476 "trees/occlusion.h",
475 "trees/occlusion_tracker.cc", 477 "trees/occlusion_tracker.cc",
476 "trees/occlusion_tracker.h", 478 "trees/occlusion_tracker.h",
477 "trees/property_tree.cc", 479 "trees/property_tree.cc",
478 "trees/property_tree.h", 480 "trees/property_tree.h",
479 "trees/property_tree_builder.cc", 481 "trees/property_tree_builder.cc",
480 "trees/property_tree_builder.h", 482 "trees/property_tree_builder.h",
481 "trees/proxy.cc", 483 "trees/proxy.cc",
482 "trees/proxy.h", 484 "trees/proxy.h",
485 "trees/proxy_impl.h",
486 "trees/proxy_main.h",
483 "trees/scoped_abort_remaining_swap_promises.h", 487 "trees/scoped_abort_remaining_swap_promises.h",
484 "trees/single_thread_proxy.cc", 488 "trees/single_thread_proxy.cc",
485 "trees/single_thread_proxy.h", 489 "trees/single_thread_proxy.h",
486 "trees/swap_promise_monitor.cc", 490 "trees/swap_promise_monitor.cc",
487 "trees/swap_promise_monitor.h", 491 "trees/swap_promise_monitor.h",
488 "trees/thread_proxy.cc", 492 "trees/thread_proxy.cc",
489 "trees/thread_proxy.h", 493 "trees/thread_proxy.h",
494 "trees/threaded_channel.cc",
495 "trees/threaded_channel.h",
490 "trees/tree_synchronizer.cc", 496 "trees/tree_synchronizer.cc",
491 "trees/tree_synchronizer.h", 497 "trees/tree_synchronizer.h",
492 ] 498 ]
493 499
494 if (target_cpu == "x86" || target_cpu == "x64") { 500 if (target_cpu == "x86" || target_cpu == "x64") {
495 sources += [ 501 sources += [
496 "raster/texture_compressor_etc1_sse.cc", 502 "raster/texture_compressor_etc1_sse.cc",
497 "raster/texture_compressor_etc1_sse.h", 503 "raster/texture_compressor_etc1_sse.h",
498 ] 504 ]
499 } 505 }
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
912 "//ui/gl", 918 "//ui/gl",
913 "//ui/gl:test_support", 919 "//ui/gl:test_support",
914 ] 920 ]
915 921
916 if (is_android) { 922 if (is_android) {
917 isolate_file = "cc_perftests.isolate" 923 isolate_file = "cc_perftests.isolate"
918 } 924 }
919 } 925 }
920 # When adding support for isolates, please have a look at run-time dependencies 926 # When adding support for isolates, please have a look at run-time dependencies
921 # in the cc_unittests_run target in cc_tests.gyp. 927 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | cc/cc.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698