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