| 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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 725 "test/picture_cache_model.cc", | 725 "test/picture_cache_model.cc", |
| 726 "test/picture_cache_model.h", | 726 "test/picture_cache_model.h", |
| 727 "test/pixel_comparator.cc", | 727 "test/pixel_comparator.cc", |
| 728 "test/pixel_comparator.h", | 728 "test/pixel_comparator.h", |
| 729 "test/pixel_test.cc", | 729 "test/pixel_test.cc", |
| 730 "test/pixel_test.h", | 730 "test/pixel_test.h", |
| 731 "test/pixel_test_output_surface.cc", | 731 "test/pixel_test_output_surface.cc", |
| 732 "test/pixel_test_output_surface.h", | 732 "test/pixel_test_output_surface.h", |
| 733 "test/pixel_test_utils.cc", | 733 "test/pixel_test_utils.cc", |
| 734 "test/pixel_test_utils.h", | 734 "test/pixel_test_utils.h", |
| 735 "test/push_properties_counting_layer.cc", |
| 736 "test/push_properties_counting_layer.h", |
| 737 "test/push_properties_counting_layer_impl.cc", |
| 738 "test/push_properties_counting_layer_impl.h", |
| 735 "test/remote_client_layer_factory.cc", | 739 "test/remote_client_layer_factory.cc", |
| 736 "test/remote_client_layer_factory.h", | 740 "test/remote_client_layer_factory.h", |
| 737 "test/remote_proto_channel_bridge.cc", | 741 "test/remote_proto_channel_bridge.cc", |
| 738 "test/remote_proto_channel_bridge.h", | 742 "test/remote_proto_channel_bridge.h", |
| 739 "test/render_pass_test_utils.cc", | 743 "test/render_pass_test_utils.cc", |
| 740 "test/render_pass_test_utils.h", | 744 "test/render_pass_test_utils.h", |
| 741 "test/scheduler_test_common.cc", | 745 "test/scheduler_test_common.cc", |
| 742 "test/scheduler_test_common.h", | 746 "test/scheduler_test_common.h", |
| 743 "test/skia_common.cc", | 747 "test/skia_common.cc", |
| 744 "test/skia_common.h", | 748 "test/skia_common.h", |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1079 "//ui/gl:test_support", | 1083 "//ui/gl:test_support", |
| 1080 ] | 1084 ] |
| 1081 | 1085 |
| 1082 # This target should not require the Chrome executable to run. | 1086 # This target should not require the Chrome executable to run. |
| 1083 assert_no_deps = [ "//chrome" ] | 1087 assert_no_deps = [ "//chrome" ] |
| 1084 | 1088 |
| 1085 data = [ | 1089 data = [ |
| 1086 "test/data/", | 1090 "test/data/", |
| 1087 ] | 1091 ] |
| 1088 } | 1092 } |
| OLD | NEW |