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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("cc") { | 7 component("cc") { |
8 sources = [ | 8 sources = [ |
9 "animation/animation.cc", | 9 "animation/animation.cc", |
10 "animation/animation.h", | 10 "animation/animation.h", |
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
464 "tiles/tiling_set_eviction_queue.cc", | 464 "tiles/tiling_set_eviction_queue.cc", |
465 "tiles/tiling_set_eviction_queue.h", | 465 "tiles/tiling_set_eviction_queue.h", |
466 "tiles/tiling_set_raster_queue_all.cc", | 466 "tiles/tiling_set_raster_queue_all.cc", |
467 "tiles/tiling_set_raster_queue_all.h", | 467 "tiles/tiling_set_raster_queue_all.h", |
468 "tiles/tiling_set_raster_queue_required.cc", | 468 "tiles/tiling_set_raster_queue_required.cc", |
469 "tiles/tiling_set_raster_queue_required.h", | 469 "tiles/tiling_set_raster_queue_required.h", |
470 "trees/blocking_task_runner.cc", | 470 "trees/blocking_task_runner.cc", |
471 "trees/blocking_task_runner.h", | 471 "trees/blocking_task_runner.h", |
472 "trees/channel_impl.h", | 472 "trees/channel_impl.h", |
473 "trees/channel_main.h", | 473 "trees/channel_main.h", |
| 474 "trees/compositor_mode.h", |
474 "trees/damage_tracker.cc", | 475 "trees/damage_tracker.cc", |
475 "trees/damage_tracker.h", | 476 "trees/damage_tracker.h", |
476 "trees/draw_property_utils.cc", | 477 "trees/draw_property_utils.cc", |
477 "trees/draw_property_utils.h", | 478 "trees/draw_property_utils.h", |
478 "trees/latency_info_swap_promise_monitor.cc", | 479 "trees/latency_info_swap_promise_monitor.cc", |
479 "trees/latency_info_swap_promise_monitor.h", | 480 "trees/latency_info_swap_promise_monitor.h", |
480 "trees/layer_tree_host.cc", | 481 "trees/layer_tree_host.cc", |
481 "trees/layer_tree_host.h", | 482 "trees/layer_tree_host.h", |
482 "trees/layer_tree_host_client.h", | 483 "trees/layer_tree_host_client.h", |
483 "trees/layer_tree_host_common.cc", | 484 "trees/layer_tree_host_common.cc", |
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
966 "//ui/gl", | 967 "//ui/gl", |
967 "//ui/gl:test_support", | 968 "//ui/gl:test_support", |
968 ] | 969 ] |
969 | 970 |
970 if (is_android) { | 971 if (is_android) { |
971 isolate_file = "cc_perftests.isolate" | 972 isolate_file = "cc_perftests.isolate" |
972 } | 973 } |
973 } | 974 } |
974 # When adding support for isolates, please have a look at run-time dependencies | 975 # When adding support for isolates, please have a look at run-time dependencies |
975 # in the cc_unittests_run target in cc_tests.gyp. | 976 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |