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 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 "tiles/tiling_set_raster_queue_required.h", | 477 "tiles/tiling_set_raster_queue_required.h", |
478 "trees/blocking_task_runner.cc", | 478 "trees/blocking_task_runner.cc", |
479 "trees/blocking_task_runner.h", | 479 "trees/blocking_task_runner.h", |
480 "trees/channel_impl.h", | 480 "trees/channel_impl.h", |
481 "trees/channel_main.h", | 481 "trees/channel_main.h", |
482 "trees/compositor_mode.h", | 482 "trees/compositor_mode.h", |
483 "trees/damage_tracker.cc", | 483 "trees/damage_tracker.cc", |
484 "trees/damage_tracker.h", | 484 "trees/damage_tracker.h", |
485 "trees/draw_property_utils.cc", | 485 "trees/draw_property_utils.cc", |
486 "trees/draw_property_utils.h", | 486 "trees/draw_property_utils.h", |
| 487 "trees/element_id.h", |
487 "trees/latency_info_swap_promise_monitor.cc", | 488 "trees/latency_info_swap_promise_monitor.cc", |
488 "trees/latency_info_swap_promise_monitor.h", | 489 "trees/latency_info_swap_promise_monitor.h", |
489 "trees/layer_tree_host.cc", | 490 "trees/layer_tree_host.cc", |
490 "trees/layer_tree_host.h", | 491 "trees/layer_tree_host.h", |
491 "trees/layer_tree_host_client.h", | 492 "trees/layer_tree_host_client.h", |
492 "trees/layer_tree_host_common.cc", | 493 "trees/layer_tree_host_common.cc", |
493 "trees/layer_tree_host_common.h", | 494 "trees/layer_tree_host_common.h", |
494 "trees/layer_tree_host_impl.cc", | 495 "trees/layer_tree_host_impl.cc", |
495 "trees/layer_tree_host_impl.h", | 496 "trees/layer_tree_host_impl.h", |
496 "trees/layer_tree_host_single_thread_client.h", | 497 "trees/layer_tree_host_single_thread_client.h", |
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
996 "//testing/gtest", | 997 "//testing/gtest", |
997 "//testing/perf", | 998 "//testing/perf", |
998 "//ui/gfx", | 999 "//ui/gfx", |
999 "//ui/gfx/geometry", | 1000 "//ui/gfx/geometry", |
1000 "//ui/gl", | 1001 "//ui/gl", |
1001 "//ui/gl:test_support", | 1002 "//ui/gl:test_support", |
1002 ] | 1003 ] |
1003 } | 1004 } |
1004 # When adding support for isolates, please have a look at run-time dependencies | 1005 # When adding support for isolates, please have a look at run-time dependencies |
1005 # in the cc_unittests_run target in cc_tests.gyp. | 1006 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |