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

Side by Side Diff: cc/BUILD.gn

Issue 134623005: Make SingleThreadProxy a SchedulerClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Abort commits properly, handle swap promises, test those Created 6 years, 4 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 | Annotate | Revision Log
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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698