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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 "quads/surface_draw_quad.cc", | 355 "quads/surface_draw_quad.cc", |
356 "quads/surface_draw_quad.h", | 356 "quads/surface_draw_quad.h", |
357 "quads/texture_draw_quad.cc", | 357 "quads/texture_draw_quad.cc", |
358 "quads/texture_draw_quad.h", | 358 "quads/texture_draw_quad.h", |
359 "quads/tile_draw_quad.cc", | 359 "quads/tile_draw_quad.cc", |
360 "quads/tile_draw_quad.h", | 360 "quads/tile_draw_quad.h", |
361 "quads/yuv_video_draw_quad.cc", | 361 "quads/yuv_video_draw_quad.cc", |
362 "quads/yuv_video_draw_quad.h", | 362 "quads/yuv_video_draw_quad.h", |
363 "raster/bitmap_tile_task_worker_pool.cc", | 363 "raster/bitmap_tile_task_worker_pool.cc", |
364 "raster/bitmap_tile_task_worker_pool.h", | 364 "raster/bitmap_tile_task_worker_pool.h", |
| 365 "raster/dependency_task.cc", |
| 366 "raster/dependency_task.h", |
365 "raster/gpu_rasterizer.cc", | 367 "raster/gpu_rasterizer.cc", |
366 "raster/gpu_rasterizer.h", | 368 "raster/gpu_rasterizer.h", |
367 "raster/gpu_tile_task_worker_pool.cc", | 369 "raster/gpu_tile_task_worker_pool.cc", |
368 "raster/gpu_tile_task_worker_pool.h", | 370 "raster/gpu_tile_task_worker_pool.h", |
369 "raster/one_copy_tile_task_worker_pool.cc", | 371 "raster/one_copy_tile_task_worker_pool.cc", |
370 "raster/one_copy_tile_task_worker_pool.h", | 372 "raster/one_copy_tile_task_worker_pool.h", |
371 "raster/raster_buffer.cc", | 373 "raster/raster_buffer.cc", |
372 "raster/raster_buffer.h", | 374 "raster/raster_buffer.h", |
373 "raster/scoped_gpu_raster.cc", | 375 "raster/scoped_gpu_raster.cc", |
374 "raster/scoped_gpu_raster.h", | 376 "raster/scoped_gpu_raster.h", |
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
992 "//ui/gl", | 994 "//ui/gl", |
993 "//ui/gl:test_support", | 995 "//ui/gl:test_support", |
994 ] | 996 ] |
995 | 997 |
996 if (is_android) { | 998 if (is_android) { |
997 isolate_file = "cc_perftests.isolate" | 999 isolate_file = "cc_perftests.isolate" |
998 } | 1000 } |
999 } | 1001 } |
1000 # When adding support for isolates, please have a look at run-time dependencies | 1002 # When adding support for isolates, please have a look at run-time dependencies |
1001 # in the cc_unittests_run target in cc_tests.gyp. | 1003 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |