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 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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
495 "trees/damage_tracker.cc", | 495 "trees/damage_tracker.cc", |
496 "trees/damage_tracker.h", | 496 "trees/damage_tracker.h", |
497 "trees/draw_property_utils.cc", | 497 "trees/draw_property_utils.cc", |
498 "trees/draw_property_utils.h", | 498 "trees/draw_property_utils.h", |
499 "trees/effect_node.cc", | 499 "trees/effect_node.cc", |
500 "trees/effect_node.h", | 500 "trees/effect_node.h", |
501 "trees/latency_info_swap_promise_monitor.cc", | 501 "trees/latency_info_swap_promise_monitor.cc", |
502 "trees/latency_info_swap_promise_monitor.h", | 502 "trees/latency_info_swap_promise_monitor.h", |
503 "trees/layer_tree.cc", | 503 "trees/layer_tree.cc", |
504 "trees/layer_tree.h", | 504 "trees/layer_tree.h", |
505 "trees/layer_tree_host.cc", | |
506 "trees/layer_tree_host.h", | 505 "trees/layer_tree_host.h", |
507 "trees/layer_tree_host_client.h", | 506 "trees/layer_tree_host_client.h", |
508 "trees/layer_tree_host_common.cc", | 507 "trees/layer_tree_host_common.cc", |
509 "trees/layer_tree_host_common.h", | 508 "trees/layer_tree_host_common.h", |
510 "trees/layer_tree_host_impl.cc", | 509 "trees/layer_tree_host_impl.cc", |
511 "trees/layer_tree_host_impl.h", | 510 "trees/layer_tree_host_impl.h", |
512 "trees/layer_tree_host_interface.h", | 511 "trees/layer_tree_host_in_process.cc", |
| 512 "trees/layer_tree_host_in_process.h", |
513 "trees/layer_tree_host_single_thread_client.h", | 513 "trees/layer_tree_host_single_thread_client.h", |
514 "trees/layer_tree_impl.cc", | 514 "trees/layer_tree_impl.cc", |
515 "trees/layer_tree_impl.h", | 515 "trees/layer_tree_impl.h", |
516 "trees/layer_tree_settings.cc", | 516 "trees/layer_tree_settings.cc", |
517 "trees/layer_tree_settings.h", | 517 "trees/layer_tree_settings.h", |
518 "trees/mutator_host_client.h", | 518 "trees/mutator_host_client.h", |
519 "trees/occlusion.cc", | 519 "trees/occlusion.cc", |
520 "trees/occlusion.h", | 520 "trees/occlusion.h", |
521 "trees/occlusion_tracker.cc", | 521 "trees/occlusion_tracker.cc", |
522 "trees/occlusion_tracker.h", | 522 "trees/occlusion_tracker.h", |
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1047 "//testing/perf", | 1047 "//testing/perf", |
1048 "//ui/gfx", | 1048 "//ui/gfx", |
1049 "//ui/gfx/geometry", | 1049 "//ui/gfx/geometry", |
1050 "//ui/gl", | 1050 "//ui/gl", |
1051 "//ui/gl:test_support", | 1051 "//ui/gl:test_support", |
1052 ] | 1052 ] |
1053 | 1053 |
1054 # This target should not require the Chrome executable to run. | 1054 # This target should not require the Chrome executable to run. |
1055 assert_no_deps = [ "//chrome" ] | 1055 assert_no_deps = [ "//chrome" ] |
1056 } | 1056 } |
OLD | NEW |