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 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 "tiles/tiling_set_eviction_queue.cc", | 502 "tiles/tiling_set_eviction_queue.cc", |
503 "tiles/tiling_set_eviction_queue.h", | 503 "tiles/tiling_set_eviction_queue.h", |
504 "tiles/tiling_set_raster_queue_all.cc", | 504 "tiles/tiling_set_raster_queue_all.cc", |
505 "tiles/tiling_set_raster_queue_all.h", | 505 "tiles/tiling_set_raster_queue_all.h", |
506 "tiles/tiling_set_raster_queue_required.cc", | 506 "tiles/tiling_set_raster_queue_required.cc", |
507 "tiles/tiling_set_raster_queue_required.h", | 507 "tiles/tiling_set_raster_queue_required.h", |
508 "trees/blocking_task_runner.cc", | 508 "trees/blocking_task_runner.cc", |
509 "trees/blocking_task_runner.h", | 509 "trees/blocking_task_runner.h", |
510 "trees/channel_impl.h", | 510 "trees/channel_impl.h", |
511 "trees/channel_main.h", | 511 "trees/channel_main.h", |
| 512 "trees/clip_expander.cc", |
| 513 "trees/clip_expander.h", |
512 "trees/clip_node.cc", | 514 "trees/clip_node.cc", |
513 "trees/clip_node.h", | 515 "trees/clip_node.h", |
514 "trees/compositor_mode.h", | 516 "trees/compositor_mode.h", |
515 "trees/damage_tracker.cc", | 517 "trees/damage_tracker.cc", |
516 "trees/damage_tracker.h", | 518 "trees/damage_tracker.h", |
517 "trees/draw_property_utils.cc", | 519 "trees/draw_property_utils.cc", |
518 "trees/draw_property_utils.h", | 520 "trees/draw_property_utils.h", |
519 "trees/effect_node.cc", | 521 "trees/effect_node.cc", |
520 "trees/effect_node.h", | 522 "trees/effect_node.h", |
521 "trees/latency_info_swap_promise_monitor.cc", | 523 "trees/latency_info_swap_promise_monitor.cc", |
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1080 "//ui/gl:test_support", | 1082 "//ui/gl:test_support", |
1081 ] | 1083 ] |
1082 | 1084 |
1083 # This target should not require the Chrome executable to run. | 1085 # This target should not require the Chrome executable to run. |
1084 assert_no_deps = [ "//chrome" ] | 1086 assert_no_deps = [ "//chrome" ] |
1085 | 1087 |
1086 data = [ | 1088 data = [ |
1087 "test/data/", | 1089 "test/data/", |
1088 ] | 1090 ] |
1089 } | 1091 } |
OLD | NEW |