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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
444 "trees/layer_tree_impl.cc", | 444 "trees/layer_tree_impl.cc", |
445 "trees/layer_tree_impl.h", | 445 "trees/layer_tree_impl.h", |
446 "trees/layer_tree_settings.cc", | 446 "trees/layer_tree_settings.cc", |
447 "trees/layer_tree_settings.h", | 447 "trees/layer_tree_settings.h", |
448 "trees/occlusion_tracker.cc", | 448 "trees/occlusion_tracker.cc", |
449 "trees/occlusion_tracker.h", | 449 "trees/occlusion_tracker.h", |
450 "trees/proxy.cc", | 450 "trees/proxy.cc", |
451 "trees/proxy.h", | 451 "trees/proxy.h", |
452 "trees/proxy_timing_history.cc", | 452 "trees/proxy_timing_history.cc", |
453 "trees/proxy_timing_history.h", | 453 "trees/proxy_timing_history.h", |
454 "trees/scoped_swap_promise_checker.h", | |
danakj
2014/08/10 12:36:09
I don't see this file.
| |
454 "trees/single_thread_proxy.cc", | 455 "trees/single_thread_proxy.cc", |
455 "trees/single_thread_proxy.h", | 456 "trees/single_thread_proxy.h", |
456 "trees/thread_proxy.cc", | 457 "trees/thread_proxy.cc", |
457 "trees/thread_proxy.h", | 458 "trees/thread_proxy.h", |
458 "trees/tree_synchronizer.cc", | 459 "trees/tree_synchronizer.cc", |
459 "trees/tree_synchronizer.h", | 460 "trees/tree_synchronizer.h", |
460 ] | 461 ] |
461 | 462 |
462 if (is_win) { | 463 if (is_win) { |
463 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 464 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
793 "//gpu:test_support", | 794 "//gpu:test_support", |
794 "//media", | 795 "//media", |
795 "//skia", | 796 "//skia", |
796 "//testing/gmock", | 797 "//testing/gmock", |
797 "//testing/gtest", | 798 "//testing/gtest", |
798 "//testing/perf", | 799 "//testing/perf", |
799 "//ui/gfx", | 800 "//ui/gfx", |
800 "//ui/gfx/geometry", | 801 "//ui/gfx/geometry", |
801 ] | 802 ] |
802 } | 803 } |
OLD | NEW |