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 25 matching lines...) Expand all Loading... | |
36 "animation/scroll_offset_animations_impl.h", | 36 "animation/scroll_offset_animations_impl.h", |
37 "animation/target_property.cc", | 37 "animation/target_property.cc", |
38 "animation/target_property.h", | 38 "animation/target_property.h", |
39 "animation/timing_function.cc", | 39 "animation/timing_function.cc", |
40 "animation/timing_function.h", | 40 "animation/timing_function.h", |
41 "animation/transform_operation.cc", | 41 "animation/transform_operation.cc", |
42 "animation/transform_operation.h", | 42 "animation/transform_operation.h", |
43 "animation/transform_operations.cc", | 43 "animation/transform_operations.cc", |
44 "animation/transform_operations.h", | 44 "animation/transform_operations.h", |
45 "blimp/client_picture_cache.h", | 45 "blimp/client_picture_cache.h", |
46 "blimp/compositor_proto_state.cc", | |
danakj
2016/09/22 23:52:29
I don't think LTHRemote (or maybe any of the blimp
Khushal
2016/09/23 00:05:42
There is too much meshing of classes right now (I'
| |
47 "blimp/compositor_proto_state.h", | |
48 "blimp/compositor_proto_state_sink.h", | |
49 "blimp/compositor_proto_state_sink_client.h", | |
46 "blimp/engine_picture_cache.h", | 50 "blimp/engine_picture_cache.h", |
47 "blimp/image_serialization_processor.h", | 51 "blimp/image_serialization_processor.h", |
52 "blimp/layer_tree_host_remote.cc", | |
53 "blimp/layer_tree_host_remote.h", | |
48 "blimp/picture_data.cc", | 54 "blimp/picture_data.cc", |
49 "blimp/picture_data.h", | 55 "blimp/picture_data.h", |
50 "blimp/picture_data_conversions.cc", | 56 "blimp/picture_data_conversions.cc", |
51 "blimp/picture_data_conversions.h", | 57 "blimp/picture_data_conversions.h", |
52 "debug/benchmark_instrumentation.cc", | 58 "debug/benchmark_instrumentation.cc", |
53 "debug/benchmark_instrumentation.h", | 59 "debug/benchmark_instrumentation.h", |
54 "debug/debug_colors.cc", | 60 "debug/debug_colors.cc", |
55 "debug/debug_colors.h", | 61 "debug/debug_colors.h", |
56 "debug/debug_rect_history.cc", | 62 "debug/debug_rect_history.cc", |
57 "debug/debug_rect_history.h", | 63 "debug/debug_rect_history.h", |
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
497 "trees/damage_tracker.cc", | 503 "trees/damage_tracker.cc", |
498 "trees/damage_tracker.h", | 504 "trees/damage_tracker.h", |
499 "trees/draw_property_utils.cc", | 505 "trees/draw_property_utils.cc", |
500 "trees/draw_property_utils.h", | 506 "trees/draw_property_utils.h", |
501 "trees/effect_node.cc", | 507 "trees/effect_node.cc", |
502 "trees/effect_node.h", | 508 "trees/effect_node.h", |
503 "trees/latency_info_swap_promise_monitor.cc", | 509 "trees/latency_info_swap_promise_monitor.cc", |
504 "trees/latency_info_swap_promise_monitor.h", | 510 "trees/latency_info_swap_promise_monitor.h", |
505 "trees/layer_tree.cc", | 511 "trees/layer_tree.cc", |
506 "trees/layer_tree.h", | 512 "trees/layer_tree.h", |
513 "trees/layer_tree_host.cc", | |
507 "trees/layer_tree_host.h", | 514 "trees/layer_tree_host.h", |
508 "trees/layer_tree_host_client.h", | 515 "trees/layer_tree_host_client.h", |
509 "trees/layer_tree_host_common.cc", | 516 "trees/layer_tree_host_common.cc", |
510 "trees/layer_tree_host_common.h", | 517 "trees/layer_tree_host_common.h", |
511 "trees/layer_tree_host_impl.cc", | 518 "trees/layer_tree_host_impl.cc", |
512 "trees/layer_tree_host_impl.h", | 519 "trees/layer_tree_host_impl.h", |
513 "trees/layer_tree_host_in_process.cc", | 520 "trees/layer_tree_host_in_process.cc", |
514 "trees/layer_tree_host_in_process.h", | 521 "trees/layer_tree_host_in_process.h", |
515 "trees/layer_tree_host_single_thread_client.h", | 522 "trees/layer_tree_host_single_thread_client.h", |
516 "trees/layer_tree_impl.cc", | 523 "trees/layer_tree_impl.cc", |
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1055 "//ui/gl:test_support", | 1062 "//ui/gl:test_support", |
1056 ] | 1063 ] |
1057 | 1064 |
1058 # This target should not require the Chrome executable to run. | 1065 # This target should not require the Chrome executable to run. |
1059 assert_no_deps = [ "//chrome" ] | 1066 assert_no_deps = [ "//chrome" ] |
1060 | 1067 |
1061 data = [ | 1068 data = [ |
1062 "test/data/", | 1069 "test/data/", |
1063 ] | 1070 ] |
1064 } | 1071 } |
OLD | NEW |