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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 "quads/solid_color_draw_quad.cc", | 347 "quads/solid_color_draw_quad.cc", |
348 "quads/solid_color_draw_quad.h", | 348 "quads/solid_color_draw_quad.h", |
349 "quads/stream_video_draw_quad.cc", | 349 "quads/stream_video_draw_quad.cc", |
350 "quads/stream_video_draw_quad.h", | 350 "quads/stream_video_draw_quad.h", |
351 "quads/surface_draw_quad.cc", | 351 "quads/surface_draw_quad.cc", |
352 "quads/surface_draw_quad.h", | 352 "quads/surface_draw_quad.h", |
353 "quads/texture_draw_quad.cc", | 353 "quads/texture_draw_quad.cc", |
354 "quads/texture_draw_quad.h", | 354 "quads/texture_draw_quad.h", |
355 "quads/tile_draw_quad.cc", | 355 "quads/tile_draw_quad.cc", |
356 "quads/tile_draw_quad.h", | 356 "quads/tile_draw_quad.h", |
| 357 "quads/y_video_draw_quad.cc", |
| 358 "quads/y_video_draw_quad.h", |
357 "quads/yuv_video_draw_quad.cc", | 359 "quads/yuv_video_draw_quad.cc", |
358 "quads/yuv_video_draw_quad.h", | 360 "quads/yuv_video_draw_quad.h", |
359 "raster/bitmap_raster_buffer_provider.cc", | 361 "raster/bitmap_raster_buffer_provider.cc", |
360 "raster/bitmap_raster_buffer_provider.h", | 362 "raster/bitmap_raster_buffer_provider.h", |
361 "raster/gpu_raster_buffer_provider.cc", | 363 "raster/gpu_raster_buffer_provider.cc", |
362 "raster/gpu_raster_buffer_provider.h", | 364 "raster/gpu_raster_buffer_provider.h", |
363 "raster/one_copy_raster_buffer_provider.cc", | 365 "raster/one_copy_raster_buffer_provider.cc", |
364 "raster/one_copy_raster_buffer_provider.h", | 366 "raster/one_copy_raster_buffer_provider.h", |
365 "raster/raster_buffer.cc", | 367 "raster/raster_buffer.cc", |
366 "raster/raster_buffer.h", | 368 "raster/raster_buffer.h", |
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1043 "//ui/gfx/geometry", | 1045 "//ui/gfx/geometry", |
1044 "//ui/gl", | 1046 "//ui/gl", |
1045 "//ui/gl:test_support", | 1047 "//ui/gl:test_support", |
1046 ] | 1048 ] |
1047 | 1049 |
1048 # This target should not require the Chrome executable to run. | 1050 # This target should not require the Chrome executable to run. |
1049 assert_no_deps = [ "//chrome" ] | 1051 assert_no_deps = [ "//chrome" ] |
1050 } | 1052 } |
1051 # When adding support for isolates, please have a look at run-time dependencies | 1053 # When adding support for isolates, please have a look at run-time dependencies |
1052 # in the cc_unittests_run target in cc_tests.gyp. | 1054 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |