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("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("cc") { | 8 component("cc") { |
9 sources = [ | 9 sources = [ |
10 "animation/animation.cc", | 10 "animation/animation.cc", |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 "quads/surface_draw_quad.cc", | 356 "quads/surface_draw_quad.cc", |
357 "quads/surface_draw_quad.h", | 357 "quads/surface_draw_quad.h", |
358 "quads/texture_draw_quad.cc", | 358 "quads/texture_draw_quad.cc", |
359 "quads/texture_draw_quad.h", | 359 "quads/texture_draw_quad.h", |
360 "quads/tile_draw_quad.cc", | 360 "quads/tile_draw_quad.cc", |
361 "quads/tile_draw_quad.h", | 361 "quads/tile_draw_quad.h", |
362 "quads/yuv_video_draw_quad.cc", | 362 "quads/yuv_video_draw_quad.cc", |
363 "quads/yuv_video_draw_quad.h", | 363 "quads/yuv_video_draw_quad.h", |
364 "raster/bitmap_tile_task_worker_pool.cc", | 364 "raster/bitmap_tile_task_worker_pool.cc", |
365 "raster/bitmap_tile_task_worker_pool.h", | 365 "raster/bitmap_tile_task_worker_pool.h", |
| 366 "raster/dependency_task.cc", |
| 367 "raster/dependency_task.h", |
366 "raster/gpu_rasterizer.cc", | 368 "raster/gpu_rasterizer.cc", |
367 "raster/gpu_rasterizer.h", | 369 "raster/gpu_rasterizer.h", |
368 "raster/gpu_tile_task_worker_pool.cc", | 370 "raster/gpu_tile_task_worker_pool.cc", |
369 "raster/gpu_tile_task_worker_pool.h", | 371 "raster/gpu_tile_task_worker_pool.h", |
370 "raster/one_copy_tile_task_worker_pool.cc", | 372 "raster/one_copy_tile_task_worker_pool.cc", |
371 "raster/one_copy_tile_task_worker_pool.h", | 373 "raster/one_copy_tile_task_worker_pool.h", |
372 "raster/raster_buffer.cc", | 374 "raster/raster_buffer.cc", |
373 "raster/raster_buffer.h", | 375 "raster/raster_buffer.h", |
374 "raster/scoped_gpu_raster.cc", | 376 "raster/scoped_gpu_raster.cc", |
375 "raster/scoped_gpu_raster.h", | 377 "raster/scoped_gpu_raster.h", |
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1015 "//ui/gl", | 1017 "//ui/gl", |
1016 "//ui/gl:test_support", | 1018 "//ui/gl:test_support", |
1017 ] | 1019 ] |
1018 | 1020 |
1019 if (is_android) { | 1021 if (is_android) { |
1020 isolate_file = "cc_perftests.isolate" | 1022 isolate_file = "cc_perftests.isolate" |
1021 } | 1023 } |
1022 } | 1024 } |
1023 # When adding support for isolates, please have a look at run-time dependencies | 1025 # When adding support for isolates, please have a look at run-time dependencies |
1024 # in the cc_unittests_run target in cc_tests.gyp. | 1026 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |