| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("cc") { | 8 component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "animation/animation.cc", | 10 "animation/animation.cc", |
| (...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 832 "layers/solid_color_layer_impl_unittest.cc", | 832 "layers/solid_color_layer_impl_unittest.cc", |
| 833 "layers/solid_color_scrollbar_layer_impl_unittest.cc", | 833 "layers/solid_color_scrollbar_layer_impl_unittest.cc", |
| 834 "layers/surface_layer_impl_unittest.cc", | 834 "layers/surface_layer_impl_unittest.cc", |
| 835 "layers/surface_layer_unittest.cc", | 835 "layers/surface_layer_unittest.cc", |
| 836 "layers/texture_layer_impl_unittest.cc", | 836 "layers/texture_layer_impl_unittest.cc", |
| 837 "layers/texture_layer_unittest.cc", | 837 "layers/texture_layer_unittest.cc", |
| 838 "layers/ui_resource_layer_impl_unittest.cc", | 838 "layers/ui_resource_layer_impl_unittest.cc", |
| 839 "layers/ui_resource_layer_unittest.cc", | 839 "layers/ui_resource_layer_unittest.cc", |
| 840 "layers/video_frame_provider_client_impl_unittest.cc", | 840 "layers/video_frame_provider_client_impl_unittest.cc", |
| 841 "layers/video_layer_impl_unittest.cc", | 841 "layers/video_layer_impl_unittest.cc", |
| 842 "layers/viewport_unittest.cc", |
| 842 "output/begin_frame_args_unittest.cc", | 843 "output/begin_frame_args_unittest.cc", |
| 843 "output/bsp_tree_unittest.cc", | 844 "output/bsp_tree_unittest.cc", |
| 844 "output/delegating_renderer_unittest.cc", | 845 "output/delegating_renderer_unittest.cc", |
| 845 "output/filter_operations_unittest.cc", | 846 "output/filter_operations_unittest.cc", |
| 846 "output/gl_renderer_unittest.cc", | 847 "output/gl_renderer_unittest.cc", |
| 847 "output/layer_quad_unittest.cc", | 848 "output/layer_quad_unittest.cc", |
| 848 "output/managed_memory_policy_unittest.cc", | 849 "output/managed_memory_policy_unittest.cc", |
| 849 "output/output_surface_unittest.cc", | 850 "output/output_surface_unittest.cc", |
| 850 "output/overlay_unittest.cc", | 851 "output/overlay_unittest.cc", |
| 851 "output/renderer_pixeltest.cc", | 852 "output/renderer_pixeltest.cc", |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1015 "//ui/gl", | 1016 "//ui/gl", |
| 1016 "//ui/gl:test_support", | 1017 "//ui/gl:test_support", |
| 1017 ] | 1018 ] |
| 1018 | 1019 |
| 1019 if (is_android) { | 1020 if (is_android) { |
| 1020 isolate_file = "cc_perftests.isolate" | 1021 isolate_file = "cc_perftests.isolate" |
| 1021 } | 1022 } |
| 1022 } | 1023 } |
| 1023 # When adding support for isolates, please have a look at run-time dependencies | 1024 # When adding support for isolates, please have a look at run-time dependencies |
| 1024 # in the cc_unittests_run target in cc_tests.gyp. | 1025 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |