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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
840 "trees/layer_tree_impl_unittest.cc", | 840 "trees/layer_tree_impl_unittest.cc", |
841 "trees/occlusion_tracker_unittest.cc", | 841 "trees/occlusion_tracker_unittest.cc", |
842 "trees/occlusion_unittest.cc", | 842 "trees/occlusion_unittest.cc", |
843 "trees/property_tree_unittest.cc", | 843 "trees/property_tree_unittest.cc", |
844 "trees/tree_synchronizer_unittest.cc", | 844 "trees/tree_synchronizer_unittest.cc", |
845 | 845 |
846 # Surfaces test files. | 846 # Surfaces test files. |
847 "surfaces/surface_aggregator_test_helpers.cc", | 847 "surfaces/surface_aggregator_test_helpers.cc", |
848 "surfaces/surface_aggregator_test_helpers.h", | 848 "surfaces/surface_aggregator_test_helpers.h", |
849 "surfaces/surface_aggregator_unittest.cc", | 849 "surfaces/surface_aggregator_unittest.cc", |
| 850 "surfaces/surface_hittest_unittest.cc", |
850 "surfaces/surface_unittest.cc", | 851 "surfaces/surface_unittest.cc", |
851 "surfaces/surfaces_pixeltest.cc", | 852 "surfaces/surfaces_pixeltest.cc", |
852 | 853 |
853 # Setup. | 854 # Setup. |
854 "test/cc_test_suite.cc", | 855 "test/cc_test_suite.cc", |
855 "test/run_all_unittests.cc", | 856 "test/run_all_unittests.cc", |
856 ] | 857 ] |
857 | 858 |
858 configs += [ "//build/config:precompiled_headers" ] | 859 configs += [ "//build/config:precompiled_headers" ] |
859 data = [ | 860 data = [ |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 "//ui/gl", | 924 "//ui/gl", |
924 "//ui/gl:test_support", | 925 "//ui/gl:test_support", |
925 ] | 926 ] |
926 | 927 |
927 if (is_android) { | 928 if (is_android) { |
928 isolate_file = "cc_perftests.isolate" | 929 isolate_file = "cc_perftests.isolate" |
929 } | 930 } |
930 } | 931 } |
931 # When adding support for isolates, please have a look at run-time dependencies | 932 # When adding support for isolates, please have a look at run-time dependencies |
932 # in the cc_unittests_run target in cc_tests.gyp. | 933 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |