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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 "quads/yuv_video_draw_quad.cc", | 351 "quads/yuv_video_draw_quad.cc", |
352 "quads/yuv_video_draw_quad.h", | 352 "quads/yuv_video_draw_quad.h", |
353 "raster/bitmap_tile_task_worker_pool.cc", | 353 "raster/bitmap_tile_task_worker_pool.cc", |
354 "raster/bitmap_tile_task_worker_pool.h", | 354 "raster/bitmap_tile_task_worker_pool.h", |
355 "raster/gpu_rasterizer.cc", | 355 "raster/gpu_rasterizer.cc", |
356 "raster/gpu_rasterizer.h", | 356 "raster/gpu_rasterizer.h", |
357 "raster/gpu_tile_task_worker_pool.cc", | 357 "raster/gpu_tile_task_worker_pool.cc", |
358 "raster/gpu_tile_task_worker_pool.h", | 358 "raster/gpu_tile_task_worker_pool.h", |
359 "raster/one_copy_tile_task_worker_pool.cc", | 359 "raster/one_copy_tile_task_worker_pool.cc", |
360 "raster/one_copy_tile_task_worker_pool.h", | 360 "raster/one_copy_tile_task_worker_pool.h", |
361 "raster/pixel_buffer_tile_task_worker_pool.cc", | |
362 "raster/pixel_buffer_tile_task_worker_pool.h", | |
363 "raster/raster_buffer.cc", | 361 "raster/raster_buffer.cc", |
364 "raster/raster_buffer.h", | 362 "raster/raster_buffer.h", |
365 "raster/scoped_gpu_raster.cc", | 363 "raster/scoped_gpu_raster.cc", |
366 "raster/scoped_gpu_raster.h", | 364 "raster/scoped_gpu_raster.h", |
367 "raster/task_graph_runner.cc", | 365 "raster/task_graph_runner.cc", |
368 "raster/task_graph_runner.h", | 366 "raster/task_graph_runner.h", |
369 "raster/texture_compressor.cc", | 367 "raster/texture_compressor.cc", |
370 "raster/texture_compressor.h", | 368 "raster/texture_compressor.h", |
371 "raster/texture_compressor_etc1.cc", | 369 "raster/texture_compressor_etc1.cc", |
372 "raster/texture_compressor_etc1.h", | 370 "raster/texture_compressor_etc1.h", |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
926 "//ui/gl", | 924 "//ui/gl", |
927 "//ui/gl:test_support", | 925 "//ui/gl:test_support", |
928 ] | 926 ] |
929 | 927 |
930 if (is_android) { | 928 if (is_android) { |
931 isolate_file = "cc_perftests.isolate" | 929 isolate_file = "cc_perftests.isolate" |
932 } | 930 } |
933 } | 931 } |
934 # When adding support for isolates, please have a look at run-time dependencies | 932 # When adding support for isolates, please have a look at run-time dependencies |
935 # in the cc_unittests_run target in cc_tests.gyp. | 933 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |