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

Side by Side Diff: cc/BUILD.gn

Issue 687873004: Introduce Property Trees (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@wip-awoloszyn2
Patch Set: . Created 6 years 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/layers/layer.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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 "scheduler/scheduler.cc", 465 "scheduler/scheduler.cc",
466 "scheduler/scheduler.h", 466 "scheduler/scheduler.h",
467 "scheduler/scheduler_settings.cc", 467 "scheduler/scheduler_settings.cc",
468 "scheduler/scheduler_settings.h", 468 "scheduler/scheduler_settings.h",
469 "scheduler/scheduler_state_machine.cc", 469 "scheduler/scheduler_state_machine.cc",
470 "scheduler/scheduler_state_machine.h", 470 "scheduler/scheduler_state_machine.h",
471 "trees/blocking_task_runner.cc", 471 "trees/blocking_task_runner.cc",
472 "trees/blocking_task_runner.h", 472 "trees/blocking_task_runner.h",
473 "trees/damage_tracker.cc", 473 "trees/damage_tracker.cc",
474 "trees/damage_tracker.h", 474 "trees/damage_tracker.h",
475 "trees/draw_property_utils.cc",
476 "trees/draw_property_utils.h",
475 "trees/layer_sorter.cc", 477 "trees/layer_sorter.cc",
476 "trees/layer_sorter.h", 478 "trees/layer_sorter.h",
477 "trees/layer_tree_host.cc", 479 "trees/layer_tree_host.cc",
478 "trees/layer_tree_host.h", 480 "trees/layer_tree_host.h",
479 "trees/layer_tree_host_client.h", 481 "trees/layer_tree_host_client.h",
480 "trees/layer_tree_host_common.cc", 482 "trees/layer_tree_host_common.cc",
481 "trees/layer_tree_host_common.h", 483 "trees/layer_tree_host_common.h",
482 "trees/layer_tree_host_impl.cc", 484 "trees/layer_tree_host_impl.cc",
483 "trees/layer_tree_host_impl.h", 485 "trees/layer_tree_host_impl.h",
484 "trees/layer_tree_impl.cc", 486 "trees/layer_tree_impl.cc",
485 "trees/layer_tree_impl.h", 487 "trees/layer_tree_impl.h",
486 "trees/layer_tree_settings.cc", 488 "trees/layer_tree_settings.cc",
487 "trees/layer_tree_settings.h", 489 "trees/layer_tree_settings.h",
488 "trees/occlusion.cc", 490 "trees/occlusion.cc",
489 "trees/occlusion.h", 491 "trees/occlusion.h",
490 "trees/occlusion_tracker.cc", 492 "trees/occlusion_tracker.cc",
491 "trees/occlusion_tracker.h", 493 "trees/occlusion_tracker.h",
494 "trees/property_tree.cc",
495 "trees/property_tree.h",
496 "trees/property_tree_builder.cc",
497 "trees/property_tree_builder.h",
492 "trees/proxy.cc", 498 "trees/proxy.cc",
493 "trees/proxy.h", 499 "trees/proxy.h",
494 "trees/proxy_timing_history.cc", 500 "trees/proxy_timing_history.cc",
495 "trees/proxy_timing_history.h", 501 "trees/proxy_timing_history.h",
496 "trees/scoped_abort_remaining_swap_promises.h", 502 "trees/scoped_abort_remaining_swap_promises.h",
497 "trees/single_thread_proxy.cc", 503 "trees/single_thread_proxy.cc",
498 "trees/single_thread_proxy.h", 504 "trees/single_thread_proxy.h",
499 "trees/thread_proxy.cc", 505 "trees/thread_proxy.cc",
500 "trees/thread_proxy.h", 506 "trees/thread_proxy.h",
501 "trees/tree_synchronizer.cc", 507 "trees/tree_synchronizer.cc",
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 "trees/layer_tree_host_unittest_delegated.cc", 807 "trees/layer_tree_host_unittest_delegated.cc",
802 "trees/layer_tree_host_unittest_occlusion.cc", 808 "trees/layer_tree_host_unittest_occlusion.cc",
803 "trees/layer_tree_host_unittest_no_message_loop.cc", 809 "trees/layer_tree_host_unittest_no_message_loop.cc",
804 "trees/layer_tree_host_unittest_picture.cc", 810 "trees/layer_tree_host_unittest_picture.cc",
805 "trees/layer_tree_host_unittest_proxy.cc", 811 "trees/layer_tree_host_unittest_proxy.cc",
806 "trees/layer_tree_host_unittest_scroll.cc", 812 "trees/layer_tree_host_unittest_scroll.cc",
807 "trees/layer_tree_host_unittest_video.cc", 813 "trees/layer_tree_host_unittest_video.cc",
808 "trees/layer_tree_impl_unittest.cc", 814 "trees/layer_tree_impl_unittest.cc",
809 "trees/occlusion_tracker_unittest.cc", 815 "trees/occlusion_tracker_unittest.cc",
810 "trees/occlusion_unittest.cc", 816 "trees/occlusion_unittest.cc",
817 "trees/property_tree_unittest.cc",
811 "trees/tree_synchronizer_unittest.cc", 818 "trees/tree_synchronizer_unittest.cc",
812 819
813 # Surfaces test files. 820 # Surfaces test files.
814 "surfaces/surface_aggregator_test_helpers.cc", 821 "surfaces/surface_aggregator_test_helpers.cc",
815 "surfaces/surface_aggregator_test_helpers.h", 822 "surfaces/surface_aggregator_test_helpers.h",
816 "surfaces/surface_aggregator_unittest.cc", 823 "surfaces/surface_aggregator_unittest.cc",
817 "surfaces/surface_unittest.cc", 824 "surfaces/surface_unittest.cc",
818 "surfaces/surfaces_pixeltest.cc", 825 "surfaces/surfaces_pixeltest.cc",
819 826
820 # Setup. 827 # Setup.
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
870 "//media", 877 "//media",
871 "//skia", 878 "//skia",
872 "//testing/gmock", 879 "//testing/gmock",
873 "//testing/gtest", 880 "//testing/gtest",
874 "//testing/perf", 881 "//testing/perf",
875 "//ui/gfx", 882 "//ui/gfx",
876 "//ui/gfx/geometry", 883 "//ui/gfx/geometry",
877 "//ui/gl", 884 "//ui/gl",
878 ] 885 ]
879 } 886 }
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | cc/layers/layer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698