| 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("//cc/cc.gni") | 6 import("//cc/cc.gni") |
| 7 | 7 |
| 8 cc_component("cc") { | 8 cc_component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "blimp/client_picture_cache.h", | 10 "blimp/client_picture_cache.h", |
| (...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 845 "output/filter_operations_unittest.cc", | 845 "output/filter_operations_unittest.cc", |
| 846 "output/gl_renderer_unittest.cc", | 846 "output/gl_renderer_unittest.cc", |
| 847 "output/layer_quad_unittest.cc", | 847 "output/layer_quad_unittest.cc", |
| 848 "output/overlay_unittest.cc", | 848 "output/overlay_unittest.cc", |
| 849 "output/renderer_pixeltest.cc", | 849 "output/renderer_pixeltest.cc", |
| 850 "output/shader_unittest.cc", | 850 "output/shader_unittest.cc", |
| 851 "output/software_renderer_unittest.cc", | 851 "output/software_renderer_unittest.cc", |
| 852 "output/texture_mailbox_deleter_unittest.cc", | 852 "output/texture_mailbox_deleter_unittest.cc", |
| 853 "playback/discardable_image_map_unittest.cc", | 853 "playback/discardable_image_map_unittest.cc", |
| 854 "playback/display_item_list_unittest.cc", | 854 "playback/display_item_list_unittest.cc", |
| 855 "playback/image_hijack_canvas_unittest.cc", |
| 855 "playback/raster_source_unittest.cc", | 856 "playback/raster_source_unittest.cc", |
| 856 "playback/recording_source_unittest.cc", | 857 "playback/recording_source_unittest.cc", |
| 857 "proto/base_conversions_unittest.cc", | 858 "proto/base_conversions_unittest.cc", |
| 858 "proto/cc_conversions_unittest.cc", | 859 "proto/cc_conversions_unittest.cc", |
| 859 "proto/gfx_conversions_unittest.cc", | 860 "proto/gfx_conversions_unittest.cc", |
| 860 "proto/skia_conversions_unittest.cc", | 861 "proto/skia_conversions_unittest.cc", |
| 861 "quads/draw_polygon_unittest.cc", | 862 "quads/draw_polygon_unittest.cc", |
| 862 "quads/draw_quad_unittest.cc", | 863 "quads/draw_quad_unittest.cc", |
| 863 "quads/render_pass_unittest.cc", | 864 "quads/render_pass_unittest.cc", |
| 864 "raster/raster_buffer_provider_unittest.cc", | 865 "raster/raster_buffer_provider_unittest.cc", |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1034 data = [ | 1035 data = [ |
| 1035 "test/data/", | 1036 "test/data/", |
| 1036 | 1037 |
| 1037 # Needed for isolate script to execute. | 1038 # Needed for isolate script to execute. |
| 1038 "//testing/scripts/common.py", | 1039 "//testing/scripts/common.py", |
| 1039 "//testing/xvfb.py", | 1040 "//testing/xvfb.py", |
| 1040 "//testing/scripts/run_gtest_perf_test.py", | 1041 "//testing/scripts/run_gtest_perf_test.py", |
| 1041 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1042 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1042 ] | 1043 ] |
| 1043 } | 1044 } |
| OLD | NEW |