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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 "playback/display_list_recording_source.h", | 300 "playback/display_list_recording_source.h", |
301 "playback/drawing_display_item.cc", | 301 "playback/drawing_display_item.cc", |
302 "playback/drawing_display_item.h", | 302 "playback/drawing_display_item.h", |
303 "playback/filter_display_item.cc", | 303 "playback/filter_display_item.cc", |
304 "playback/filter_display_item.h", | 304 "playback/filter_display_item.h", |
305 "playback/float_clip_display_item.cc", | 305 "playback/float_clip_display_item.cc", |
306 "playback/float_clip_display_item.h", | 306 "playback/float_clip_display_item.h", |
307 "playback/largest_display_item.cc", | 307 "playback/largest_display_item.cc", |
308 "playback/largest_display_item.h", | 308 "playback/largest_display_item.h", |
309 "playback/position_image.h", | 309 "playback/position_image.h", |
310 "playback/raster_source.h", | |
311 "playback/raster_source_helper.cc", | |
312 "playback/raster_source_helper.h", | |
313 "playback/transform_display_item.cc", | 310 "playback/transform_display_item.cc", |
314 "playback/transform_display_item.h", | 311 "playback/transform_display_item.h", |
315 "quads/content_draw_quad_base.cc", | 312 "quads/content_draw_quad_base.cc", |
316 "quads/content_draw_quad_base.h", | 313 "quads/content_draw_quad_base.h", |
317 "quads/debug_border_draw_quad.cc", | 314 "quads/debug_border_draw_quad.cc", |
318 "quads/debug_border_draw_quad.h", | 315 "quads/debug_border_draw_quad.h", |
319 "quads/draw_polygon.cc", | 316 "quads/draw_polygon.cc", |
320 "quads/draw_polygon.h", | 317 "quads/draw_polygon.h", |
321 "quads/draw_quad.cc", | 318 "quads/draw_quad.cc", |
322 "quads/draw_quad.h", | 319 "quads/draw_quad.h", |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
873 "//testing/gmock", | 870 "//testing/gmock", |
874 "//testing/gtest", | 871 "//testing/gtest", |
875 "//ui/events:events_base", | 872 "//ui/events:events_base", |
876 "//ui/gfx", | 873 "//ui/gfx", |
877 "//ui/gfx/geometry", | 874 "//ui/gfx/geometry", |
878 "//ui/gfx:test_support", | 875 "//ui/gfx:test_support", |
879 "//ui/gl", | 876 "//ui/gl", |
880 "//ui/gl:test_support", | 877 "//ui/gl:test_support", |
881 ] | 878 ] |
882 | 879 |
883 data_deps = [ "//third_party/mesa:osmesa" ] | 880 data_deps = [ |
| 881 "//third_party/mesa:osmesa", |
| 882 ] |
884 } | 883 } |
885 | 884 |
886 test("cc_perftests") { | 885 test("cc_perftests") { |
887 sources = [ | 886 sources = [ |
888 "layers/layer_perftest.cc", | 887 "layers/layer_perftest.cc", |
889 "layers/picture_layer_impl_perftest.cc", | 888 "layers/picture_layer_impl_perftest.cc", |
890 "quads/draw_quad_perftest.cc", | 889 "quads/draw_quad_perftest.cc", |
891 "raster/task_graph_runner_perftest.cc", | 890 "raster/task_graph_runner_perftest.cc", |
892 "raster/texture_compressor_perftest.cc", | 891 "raster/texture_compressor_perftest.cc", |
893 "raster/tile_task_worker_pool_perftest.cc", | 892 "raster/tile_task_worker_pool_perftest.cc", |
(...skipping 27 matching lines...) Expand all Loading... |
921 "//ui/gl", | 920 "//ui/gl", |
922 "//ui/gl:test_support", | 921 "//ui/gl:test_support", |
923 ] | 922 ] |
924 | 923 |
925 if (is_android) { | 924 if (is_android) { |
926 isolate_file = "cc_perftests.isolate" | 925 isolate_file = "cc_perftests.isolate" |
927 } | 926 } |
928 } | 927 } |
929 # When adding support for isolates, please have a look at run-time dependencies | 928 # When adding support for isolates, please have a look at run-time dependencies |
930 # in the cc_unittests_run target in cc_tests.gyp. | 929 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |