| 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 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 "output/output_surface_unittest.cc", | 782 "output/output_surface_unittest.cc", |
| 783 "output/overlay_unittest.cc", | 783 "output/overlay_unittest.cc", |
| 784 "output/renderer_pixeltest.cc", | 784 "output/renderer_pixeltest.cc", |
| 785 "output/renderer_unittest.cc", | 785 "output/renderer_unittest.cc", |
| 786 "output/shader_unittest.cc", | 786 "output/shader_unittest.cc", |
| 787 "output/software_renderer_unittest.cc", | 787 "output/software_renderer_unittest.cc", |
| 788 "quads/draw_quad_unittest.cc", | 788 "quads/draw_quad_unittest.cc", |
| 789 "quads/list_container_unittest.cc", | 789 "quads/list_container_unittest.cc", |
| 790 "quads/render_pass_unittest.cc", | 790 "quads/render_pass_unittest.cc", |
| 791 "resources/display_item_list_unittest.cc", | 791 "resources/display_item_list_unittest.cc", |
| 792 "resources/display_list_recording_source_unittest.cc", |
| 792 "resources/layer_quad_unittest.cc", | 793 "resources/layer_quad_unittest.cc", |
| 793 "resources/picture_layer_tiling_set_unittest.cc", | 794 "resources/picture_layer_tiling_set_unittest.cc", |
| 794 "resources/picture_layer_tiling_unittest.cc", | 795 "resources/picture_layer_tiling_unittest.cc", |
| 795 "resources/picture_pile_impl_unittest.cc", | 796 "resources/picture_pile_impl_unittest.cc", |
| 796 "resources/picture_pile_unittest.cc", | 797 "resources/picture_pile_unittest.cc", |
| 797 "resources/picture_unittest.cc", | 798 "resources/picture_unittest.cc", |
| 798 "resources/pixel_ref_map_unittest.cc", | 799 "resources/pixel_ref_map_unittest.cc", |
| 799 "resources/platform_color_unittest.cc", | 800 "resources/platform_color_unittest.cc", |
| 800 "resources/prioritized_resource_unittest.cc", | 801 "resources/prioritized_resource_unittest.cc", |
| 801 "resources/resource_provider_unittest.cc", | 802 "resources/resource_provider_unittest.cc", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 909 "//testing/gmock", | 910 "//testing/gmock", |
| 910 "//testing/gtest", | 911 "//testing/gtest", |
| 911 "//testing/perf", | 912 "//testing/perf", |
| 912 "//ui/gfx", | 913 "//ui/gfx", |
| 913 "//ui/gfx/geometry", | 914 "//ui/gfx/geometry", |
| 914 "//ui/gl", | 915 "//ui/gl", |
| 915 ] | 916 ] |
| 916 } | 917 } |
| 917 # When adding support for isolates, please have a look at run-time dependencies | 918 # When adding support for isolates, please have a look at run-time dependencies |
| 918 # in the cc_unittests_run target in cc_tests.gyp. | 919 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |