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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 "quads/texture_draw_quad.cc", | 350 "quads/texture_draw_quad.cc", |
351 "quads/texture_draw_quad.h", | 351 "quads/texture_draw_quad.h", |
352 "quads/tile_draw_quad.cc", | 352 "quads/tile_draw_quad.cc", |
353 "quads/tile_draw_quad.h", | 353 "quads/tile_draw_quad.h", |
354 "quads/yuv_video_draw_quad.cc", | 354 "quads/yuv_video_draw_quad.cc", |
355 "quads/yuv_video_draw_quad.h", | 355 "quads/yuv_video_draw_quad.h", |
356 "raster/bitmap_raster_buffer_provider.cc", | 356 "raster/bitmap_raster_buffer_provider.cc", |
357 "raster/bitmap_raster_buffer_provider.h", | 357 "raster/bitmap_raster_buffer_provider.h", |
358 "raster/gpu_raster_buffer_provider.cc", | 358 "raster/gpu_raster_buffer_provider.cc", |
359 "raster/gpu_raster_buffer_provider.h", | 359 "raster/gpu_raster_buffer_provider.h", |
360 "raster/gpu_rasterizer.cc", | |
361 "raster/gpu_rasterizer.h", | |
362 "raster/one_copy_raster_buffer_provider.cc", | 360 "raster/one_copy_raster_buffer_provider.cc", |
363 "raster/one_copy_raster_buffer_provider.h", | 361 "raster/one_copy_raster_buffer_provider.h", |
364 "raster/raster_buffer.cc", | 362 "raster/raster_buffer.cc", |
365 "raster/raster_buffer.h", | 363 "raster/raster_buffer.h", |
366 "raster/raster_buffer_provider.cc", | 364 "raster/raster_buffer_provider.cc", |
367 "raster/raster_buffer_provider.h", | 365 "raster/raster_buffer_provider.h", |
368 "raster/scoped_gpu_raster.cc", | 366 "raster/scoped_gpu_raster.cc", |
369 "raster/scoped_gpu_raster.h", | 367 "raster/scoped_gpu_raster.h", |
370 "raster/single_thread_task_graph_runner.cc", | 368 "raster/single_thread_task_graph_runner.cc", |
371 "raster/single_thread_task_graph_runner.h", | 369 "raster/single_thread_task_graph_runner.h", |
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1007 "//ui/gfx/geometry", | 1005 "//ui/gfx/geometry", |
1008 "//ui/gl", | 1006 "//ui/gl", |
1009 "//ui/gl:test_support", | 1007 "//ui/gl:test_support", |
1010 ] | 1008 ] |
1011 | 1009 |
1012 # This target should not require the Chrome executable to run. | 1010 # This target should not require the Chrome executable to run. |
1013 assert_no_deps = [ "//chrome" ] | 1011 assert_no_deps = [ "//chrome" ] |
1014 } | 1012 } |
1015 # When adding support for isolates, please have a look at run-time dependencies | 1013 # When adding support for isolates, please have a look at run-time dependencies |
1016 # in the cc_unittests_run target in cc_tests.gyp. | 1014 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |