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 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 "trees/threaded_channel_unittest.cc", | 908 "trees/threaded_channel_unittest.cc", |
909 "trees/tree_synchronizer_unittest.cc", | 909 "trees/tree_synchronizer_unittest.cc", |
910 | 910 |
911 # Surfaces test files. | 911 # Surfaces test files. |
912 "surfaces/display_scheduler_unittest.cc", | 912 "surfaces/display_scheduler_unittest.cc", |
913 "surfaces/display_unittest.cc", | 913 "surfaces/display_unittest.cc", |
914 "surfaces/surface_aggregator_unittest.cc", | 914 "surfaces/surface_aggregator_unittest.cc", |
915 "surfaces/surface_display_output_surface_unittest.cc", | 915 "surfaces/surface_display_output_surface_unittest.cc", |
916 "surfaces/surface_factory_unittest.cc", | 916 "surfaces/surface_factory_unittest.cc", |
917 "surfaces/surface_hittest_unittest.cc", | 917 "surfaces/surface_hittest_unittest.cc", |
| 918 "surfaces/surface_manager_unittest.cc", |
918 "surfaces/surface_unittest.cc", | 919 "surfaces/surface_unittest.cc", |
919 "surfaces/surfaces_pixeltest.cc", | 920 "surfaces/surfaces_pixeltest.cc", |
920 | 921 |
921 # Setup. | 922 # Setup. |
922 "test/cc_test_suite.cc", | 923 "test/cc_test_suite.cc", |
923 "test/run_all_unittests.cc", | 924 "test/run_all_unittests.cc", |
924 ] | 925 ] |
925 | 926 |
926 configs += [ "//build/config:precompiled_headers" ] | 927 configs += [ "//build/config:precompiled_headers" ] |
927 data = [ | 928 data = [ |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
994 "//ui/gl", | 995 "//ui/gl", |
995 "//ui/gl:test_support", | 996 "//ui/gl:test_support", |
996 ] | 997 ] |
997 | 998 |
998 if (is_android) { | 999 if (is_android) { |
999 isolate_file = "cc_perftests.isolate" | 1000 isolate_file = "cc_perftests.isolate" |
1000 } | 1001 } |
1001 } | 1002 } |
1002 # When adding support for isolates, please have a look at run-time dependencies | 1003 # When adding support for isolates, please have a look at run-time dependencies |
1003 # in the cc_unittests_run target in cc_tests.gyp. | 1004 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |