| 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 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 "trees/layer_tree_impl_unittest.cc", | 833 "trees/layer_tree_impl_unittest.cc", |
| 834 "trees/occlusion_tracker_unittest.cc", | 834 "trees/occlusion_tracker_unittest.cc", |
| 835 "trees/occlusion_unittest.cc", | 835 "trees/occlusion_unittest.cc", |
| 836 "trees/property_tree_unittest.cc", | 836 "trees/property_tree_unittest.cc", |
| 837 "trees/tree_synchronizer_unittest.cc", | 837 "trees/tree_synchronizer_unittest.cc", |
| 838 | 838 |
| 839 # Surfaces test files. | 839 # Surfaces test files. |
| 840 "surfaces/surface_aggregator_test_helpers.cc", | 840 "surfaces/surface_aggregator_test_helpers.cc", |
| 841 "surfaces/surface_aggregator_test_helpers.h", | 841 "surfaces/surface_aggregator_test_helpers.h", |
| 842 "surfaces/surface_aggregator_unittest.cc", | 842 "surfaces/surface_aggregator_unittest.cc", |
| 843 "surfaces/surface_hittest_unittest.cc", |
| 843 "surfaces/surface_unittest.cc", | 844 "surfaces/surface_unittest.cc", |
| 844 "surfaces/surfaces_pixeltest.cc", | 845 "surfaces/surfaces_pixeltest.cc", |
| 845 | 846 |
| 846 # Setup. | 847 # Setup. |
| 847 "test/cc_test_suite.cc", | 848 "test/cc_test_suite.cc", |
| 848 "test/run_all_unittests.cc", | 849 "test/run_all_unittests.cc", |
| 849 ] | 850 ] |
| 850 | 851 |
| 851 configs += [ "//build/config:precompiled_headers" ] | 852 configs += [ "//build/config:precompiled_headers" ] |
| 852 data = [ | 853 data = [ |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 "//ui/gl", | 917 "//ui/gl", |
| 917 "//ui/gl:test_support", | 918 "//ui/gl:test_support", |
| 918 ] | 919 ] |
| 919 | 920 |
| 920 if (is_android) { | 921 if (is_android) { |
| 921 isolate_file = "cc_perftests.isolate" | 922 isolate_file = "cc_perftests.isolate" |
| 922 } | 923 } |
| 923 } | 924 } |
| 924 # When adding support for isolates, please have a look at run-time dependencies | 925 # When adding support for isolates, please have a look at run-time dependencies |
| 925 # in the cc_unittests_run target in cc_tests.gyp. | 926 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |