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