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

Side by Side Diff: cc/BUILD.gn

Issue 2159513003: Setup LayerTree class, refactor 2 functions from LayerTreeHost to it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/layers/layer.cc » ('j') | cc/layers/layer.cc » ('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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("cc") { 8 component("cc") {
9 sources = [ 9 sources = [
10 "animation/animation.cc", 10 "animation/animation.cc",
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 "trees/clip_node.h", 488 "trees/clip_node.h",
489 "trees/compositor_mode.h", 489 "trees/compositor_mode.h",
490 "trees/damage_tracker.cc", 490 "trees/damage_tracker.cc",
491 "trees/damage_tracker.h", 491 "trees/damage_tracker.h",
492 "trees/draw_property_utils.cc", 492 "trees/draw_property_utils.cc",
493 "trees/draw_property_utils.h", 493 "trees/draw_property_utils.h",
494 "trees/effect_node.cc", 494 "trees/effect_node.cc",
495 "trees/effect_node.h", 495 "trees/effect_node.h",
496 "trees/latency_info_swap_promise_monitor.cc", 496 "trees/latency_info_swap_promise_monitor.cc",
497 "trees/latency_info_swap_promise_monitor.h", 497 "trees/latency_info_swap_promise_monitor.h",
498 "trees/layer_tree.cc",
Khushal 2016/07/18 16:59:32 This will need a gyp change too.
xingliu 2016/07/19 22:47:37 Done.
499 "trees/layer_tree.h",
498 "trees/layer_tree_host.cc", 500 "trees/layer_tree_host.cc",
499 "trees/layer_tree_host.h", 501 "trees/layer_tree_host.h",
500 "trees/layer_tree_host_client.h", 502 "trees/layer_tree_host_client.h",
501 "trees/layer_tree_host_common.cc", 503 "trees/layer_tree_host_common.cc",
502 "trees/layer_tree_host_common.h", 504 "trees/layer_tree_host_common.h",
503 "trees/layer_tree_host_impl.cc", 505 "trees/layer_tree_host_impl.cc",
504 "trees/layer_tree_host_impl.h", 506 "trees/layer_tree_host_impl.h",
505 "trees/layer_tree_host_single_thread_client.h", 507 "trees/layer_tree_host_single_thread_client.h",
506 "trees/layer_tree_impl.cc", 508 "trees/layer_tree_impl.cc",
507 "trees/layer_tree_impl.h", 509 "trees/layer_tree_impl.h",
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
1043 "//ui/gfx/geometry", 1045 "//ui/gfx/geometry",
1044 "//ui/gl", 1046 "//ui/gl",
1045 "//ui/gl:test_support", 1047 "//ui/gl:test_support",
1046 ] 1048 ]
1047 1049
1048 # This target should not require the Chrome executable to run. 1050 # This target should not require the Chrome executable to run.
1049 assert_no_deps = [ "//chrome" ] 1051 assert_no_deps = [ "//chrome" ]
1050 } 1052 }
1051 # When adding support for isolates, please have a look at run-time dependencies 1053 # When adding support for isolates, please have a look at run-time dependencies
1052 # in the cc_unittests_run target in cc_tests.gyp. 1054 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/layers/layer.cc » ('j') | cc/layers/layer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698