| 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 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 "trees/threaded_channel_unittest.cc", | 901 "trees/threaded_channel_unittest.cc", |
| 902 "trees/tree_synchronizer_unittest.cc", | 902 "trees/tree_synchronizer_unittest.cc", |
| 903 | 903 |
| 904 # Surfaces test files. | 904 # Surfaces test files. |
| 905 "surfaces/display_scheduler_unittest.cc", | 905 "surfaces/display_scheduler_unittest.cc", |
| 906 "surfaces/display_unittest.cc", | 906 "surfaces/display_unittest.cc", |
| 907 "surfaces/surface_aggregator_unittest.cc", | 907 "surfaces/surface_aggregator_unittest.cc", |
| 908 "surfaces/surface_display_output_surface_unittest.cc", | 908 "surfaces/surface_display_output_surface_unittest.cc", |
| 909 "surfaces/surface_factory_unittest.cc", | 909 "surfaces/surface_factory_unittest.cc", |
| 910 "surfaces/surface_hittest_unittest.cc", | 910 "surfaces/surface_hittest_unittest.cc", |
| 911 "surfaces/surface_manager_unittest.cc", |
| 911 "surfaces/surface_unittest.cc", | 912 "surfaces/surface_unittest.cc", |
| 912 "surfaces/surfaces_pixeltest.cc", | 913 "surfaces/surfaces_pixeltest.cc", |
| 913 | 914 |
| 914 # Setup. | 915 # Setup. |
| 915 "test/cc_test_suite.cc", | 916 "test/cc_test_suite.cc", |
| 916 "test/run_all_unittests.cc", | 917 "test/run_all_unittests.cc", |
| 917 ] | 918 ] |
| 918 | 919 |
| 919 configs += [ "//build/config:precompiled_headers" ] | 920 configs += [ "//build/config:precompiled_headers" ] |
| 920 data = [ | 921 data = [ |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 987 "//ui/gl", | 988 "//ui/gl", |
| 988 "//ui/gl:test_support", | 989 "//ui/gl:test_support", |
| 989 ] | 990 ] |
| 990 | 991 |
| 991 if (is_android) { | 992 if (is_android) { |
| 992 isolate_file = "cc_perftests.isolate" | 993 isolate_file = "cc_perftests.isolate" |
| 993 } | 994 } |
| 994 } | 995 } |
| 995 # When adding support for isolates, please have a look at run-time dependencies | 996 # When adding support for isolates, please have a look at run-time dependencies |
| 996 # in the cc_unittests_run target in cc_tests.gyp. | 997 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |