OLD | NEW |
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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 "trees/layer_tree_host.h", | 443 "trees/layer_tree_host.h", |
444 "trees/layer_tree_host_client.h", | 444 "trees/layer_tree_host_client.h", |
445 "trees/layer_tree_host_common.cc", | 445 "trees/layer_tree_host_common.cc", |
446 "trees/layer_tree_host_common.h", | 446 "trees/layer_tree_host_common.h", |
447 "trees/layer_tree_host_impl.cc", | 447 "trees/layer_tree_host_impl.cc", |
448 "trees/layer_tree_host_impl.h", | 448 "trees/layer_tree_host_impl.h", |
449 "trees/layer_tree_impl.cc", | 449 "trees/layer_tree_impl.cc", |
450 "trees/layer_tree_impl.h", | 450 "trees/layer_tree_impl.h", |
451 "trees/layer_tree_settings.cc", | 451 "trees/layer_tree_settings.cc", |
452 "trees/layer_tree_settings.h", | 452 "trees/layer_tree_settings.h", |
| 453 "trees/occlusion_checker.cc", |
| 454 "trees/occlusion_checker.h", |
453 "trees/occlusion_tracker.cc", | 455 "trees/occlusion_tracker.cc", |
454 "trees/occlusion_tracker.h", | 456 "trees/occlusion_tracker.h", |
455 "trees/proxy.cc", | 457 "trees/proxy.cc", |
456 "trees/proxy.h", | 458 "trees/proxy.h", |
457 "trees/proxy_timing_history.cc", | 459 "trees/proxy_timing_history.cc", |
458 "trees/proxy_timing_history.h", | 460 "trees/proxy_timing_history.h", |
459 "trees/scoped_abort_remaining_swap_promises.h", | 461 "trees/scoped_abort_remaining_swap_promises.h", |
460 "trees/single_thread_proxy.cc", | 462 "trees/single_thread_proxy.cc", |
461 "trees/single_thread_proxy.h", | 463 "trees/single_thread_proxy.h", |
462 "trees/thread_proxy.cc", | 464 "trees/thread_proxy.cc", |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
803 "//gpu/command_buffer/common:gles2_utils", | 805 "//gpu/command_buffer/common:gles2_utils", |
804 "//media", | 806 "//media", |
805 "//skia", | 807 "//skia", |
806 "//testing/gmock", | 808 "//testing/gmock", |
807 "//testing/gtest", | 809 "//testing/gtest", |
808 "//testing/perf", | 810 "//testing/perf", |
809 "//ui/gfx", | 811 "//ui/gfx", |
810 "//ui/gfx/geometry", | 812 "//ui/gfx/geometry", |
811 ] | 813 ] |
812 } | 814 } |
OLD | NEW |