| 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 "tiles/tiling_set_eviction_queue.cc", | 456 "tiles/tiling_set_eviction_queue.cc", |
| 457 "tiles/tiling_set_eviction_queue.h", | 457 "tiles/tiling_set_eviction_queue.h", |
| 458 "tiles/tiling_set_raster_queue_all.cc", | 458 "tiles/tiling_set_raster_queue_all.cc", |
| 459 "tiles/tiling_set_raster_queue_all.h", | 459 "tiles/tiling_set_raster_queue_all.h", |
| 460 "tiles/tiling_set_raster_queue_required.cc", | 460 "tiles/tiling_set_raster_queue_required.cc", |
| 461 "tiles/tiling_set_raster_queue_required.h", | 461 "tiles/tiling_set_raster_queue_required.h", |
| 462 "trees/blocking_task_runner.cc", | 462 "trees/blocking_task_runner.cc", |
| 463 "trees/blocking_task_runner.h", | 463 "trees/blocking_task_runner.h", |
| 464 "trees/channel_impl.h", | 464 "trees/channel_impl.h", |
| 465 "trees/channel_main.h", | 465 "trees/channel_main.h", |
| 466 "trees/compositor_mode.h", |
| 466 "trees/damage_tracker.cc", | 467 "trees/damage_tracker.cc", |
| 467 "trees/damage_tracker.h", | 468 "trees/damage_tracker.h", |
| 468 "trees/draw_property_utils.cc", | 469 "trees/draw_property_utils.cc", |
| 469 "trees/draw_property_utils.h", | 470 "trees/draw_property_utils.h", |
| 470 "trees/latency_info_swap_promise_monitor.cc", | 471 "trees/latency_info_swap_promise_monitor.cc", |
| 471 "trees/latency_info_swap_promise_monitor.h", | 472 "trees/latency_info_swap_promise_monitor.h", |
| 472 "trees/layer_tree_host.cc", | 473 "trees/layer_tree_host.cc", |
| 473 "trees/layer_tree_host.h", | 474 "trees/layer_tree_host.h", |
| 474 "trees/layer_tree_host_client.h", | 475 "trees/layer_tree_host_client.h", |
| 475 "trees/layer_tree_host_common.cc", | 476 "trees/layer_tree_host_common.cc", |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 "//ui/gl", | 941 "//ui/gl", |
| 941 "//ui/gl:test_support", | 942 "//ui/gl:test_support", |
| 942 ] | 943 ] |
| 943 | 944 |
| 944 if (is_android) { | 945 if (is_android) { |
| 945 isolate_file = "cc_perftests.isolate" | 946 isolate_file = "cc_perftests.isolate" |
| 946 } | 947 } |
| 947 } | 948 } |
| 948 # When adding support for isolates, please have a look at run-time dependencies | 949 # When adding support for isolates, please have a look at run-time dependencies |
| 949 # in the cc_unittests_run target in cc_tests.gyp. | 950 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |