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("//cc/cc.gni") | 5 import("//cc/cc.gni") |
6 import("//gpu/vulkan/features.gni") | 6 import("//gpu/vulkan/features.gni") |
7 | 7 |
8 cc_component("cc") { | 8 cc_component("cc") { |
9 sources = [ | 9 sources = [ |
10 "benchmarks/benchmark_instrumentation.cc", | 10 "benchmarks/benchmark_instrumentation.cc", |
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 "output/context_cache_controller_unittest.cc", | 755 "output/context_cache_controller_unittest.cc", |
756 "output/gl_renderer_unittest.cc", | 756 "output/gl_renderer_unittest.cc", |
757 "output/layer_quad_unittest.cc", | 757 "output/layer_quad_unittest.cc", |
758 "output/overlay_unittest.cc", | 758 "output/overlay_unittest.cc", |
759 "output/renderer_pixeltest.cc", | 759 "output/renderer_pixeltest.cc", |
760 "output/shader_unittest.cc", | 760 "output/shader_unittest.cc", |
761 "output/software_renderer_unittest.cc", | 761 "output/software_renderer_unittest.cc", |
762 "output/texture_mailbox_deleter_unittest.cc", | 762 "output/texture_mailbox_deleter_unittest.cc", |
763 "paint/discardable_image_map_unittest.cc", | 763 "paint/discardable_image_map_unittest.cc", |
764 "paint/display_item_list_unittest.cc", | 764 "paint/display_item_list_unittest.cc", |
| 765 "paint/paint_op_buffer_unittest.cc", |
| 766 "paint/test_skcanvas.cc", |
| 767 "paint/test_skcanvas.h", |
765 "quads/draw_polygon_unittest.cc", | 768 "quads/draw_polygon_unittest.cc", |
766 "quads/draw_quad_unittest.cc", | 769 "quads/draw_quad_unittest.cc", |
767 "quads/nine_patch_generator_unittest.cc", | 770 "quads/nine_patch_generator_unittest.cc", |
768 "quads/render_pass_unittest.cc", | 771 "quads/render_pass_unittest.cc", |
769 "raster/image_hijack_canvas_unittest.cc", | 772 "raster/image_hijack_canvas_unittest.cc", |
770 "raster/raster_buffer_provider_unittest.cc", | 773 "raster/raster_buffer_provider_unittest.cc", |
771 "raster/raster_source_unittest.cc", | 774 "raster/raster_source_unittest.cc", |
772 "raster/scoped_gpu_raster_unittest.cc", | 775 "raster/scoped_gpu_raster_unittest.cc", |
773 "raster/single_thread_task_graph_runner_unittest.cc", | 776 "raster/single_thread_task_graph_runner_unittest.cc", |
774 "raster/synchronous_task_graph_runner_unittest.cc", | 777 "raster/synchronous_task_graph_runner_unittest.cc", |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
925 ] | 928 ] |
926 | 929 |
927 deps = [ | 930 deps = [ |
928 ":cc", | 931 ":cc", |
929 ":test_support", | 932 ":test_support", |
930 "//base", | 933 "//base", |
931 "//base/test:test_support", | 934 "//base/test:test_support", |
932 "//cc/ipc", | 935 "//cc/ipc", |
933 "//cc/ipc:interfaces", | 936 "//cc/ipc:interfaces", |
934 "//cc/paint", | 937 "//cc/paint", |
| 938 "//cc/paint", |
935 "//cc/surfaces", | 939 "//cc/surfaces", |
936 "//cc/surfaces:surface_id", | 940 "//cc/surfaces:surface_id", |
937 "//gpu", | 941 "//gpu", |
938 "//gpu:test_support", | 942 "//gpu:test_support", |
939 "//gpu/command_buffer/common:gles2_utils", | 943 "//gpu/command_buffer/common:gles2_utils", |
940 "//media", | 944 "//media", |
941 "//mojo/edk/system", | 945 "//mojo/edk/system", |
942 "//mojo/public/cpp/bindings", | 946 "//mojo/public/cpp/bindings", |
943 "//skia", | 947 "//skia", |
944 "//testing/gmock", | 948 "//testing/gmock", |
(...skipping 11 matching lines...) Expand all Loading... |
956 data = [ | 960 data = [ |
957 "test/data/", | 961 "test/data/", |
958 | 962 |
959 # Needed for isolate script to execute. | 963 # Needed for isolate script to execute. |
960 "//testing/scripts/common.py", | 964 "//testing/scripts/common.py", |
961 "//testing/xvfb.py", | 965 "//testing/xvfb.py", |
962 "//testing/scripts/run_gtest_perf_test.py", | 966 "//testing/scripts/run_gtest_perf_test.py", |
963 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 967 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
964 ] | 968 ] |
965 } | 969 } |
OLD | NEW |