| 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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 "output/gl_renderer_unittest.cc", | 822 "output/gl_renderer_unittest.cc", |
| 823 "output/layer_quad_unittest.cc", | 823 "output/layer_quad_unittest.cc", |
| 824 "output/output_surface_unittest.cc", | 824 "output/output_surface_unittest.cc", |
| 825 "output/overlay_unittest.cc", | 825 "output/overlay_unittest.cc", |
| 826 "output/renderer_pixeltest.cc", | 826 "output/renderer_pixeltest.cc", |
| 827 "output/renderer_unittest.cc", | 827 "output/renderer_unittest.cc", |
| 828 "output/shader_unittest.cc", | 828 "output/shader_unittest.cc", |
| 829 "output/software_renderer_unittest.cc", | 829 "output/software_renderer_unittest.cc", |
| 830 "output/texture_mailbox_deleter_unittest.cc", | 830 "output/texture_mailbox_deleter_unittest.cc", |
| 831 "playback/display_item_list_unittest.cc", | 831 "playback/display_item_list_unittest.cc", |
| 832 "playback/display_list_raster_source_unittest.cc", |
| 832 "playback/display_list_recording_source_unittest.cc", | 833 "playback/display_list_recording_source_unittest.cc", |
| 833 "playback/picture_pile_impl_unittest.cc", | 834 "playback/picture_pile_impl_unittest.cc", |
| 834 "playback/picture_pile_unittest.cc", | 835 "playback/picture_pile_unittest.cc", |
| 835 "playback/picture_unittest.cc", | 836 "playback/picture_unittest.cc", |
| 836 "playback/pixel_ref_map_unittest.cc", | 837 "playback/pixel_ref_map_unittest.cc", |
| 837 "playback/recording_source_unittest.cc", | 838 "playback/recording_source_unittest.cc", |
| 838 "quads/draw_quad_unittest.cc", | 839 "quads/draw_quad_unittest.cc", |
| 839 "quads/list_container_unittest.cc", | 840 "quads/list_container_unittest.cc", |
| 840 "quads/render_pass_unittest.cc", | 841 "quads/render_pass_unittest.cc", |
| 841 "raster/scoped_gpu_raster_unittest.cc", | 842 "raster/scoped_gpu_raster_unittest.cc", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 958 "//testing/gmock", | 959 "//testing/gmock", |
| 959 "//testing/gtest", | 960 "//testing/gtest", |
| 960 "//testing/perf", | 961 "//testing/perf", |
| 961 "//ui/gfx", | 962 "//ui/gfx", |
| 962 "//ui/gfx/geometry", | 963 "//ui/gfx/geometry", |
| 963 "//ui/gl", | 964 "//ui/gl", |
| 964 ] | 965 ] |
| 965 } | 966 } |
| 966 # When adding support for isolates, please have a look at run-time dependencies | 967 # When adding support for isolates, please have a look at run-time dependencies |
| 967 # in the cc_unittests_run target in cc_tests.gyp. | 968 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |