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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 "quads/solid_color_draw_quad.cc", | 351 "quads/solid_color_draw_quad.cc", |
352 "quads/solid_color_draw_quad.h", | 352 "quads/solid_color_draw_quad.h", |
353 "quads/stream_video_draw_quad.cc", | 353 "quads/stream_video_draw_quad.cc", |
354 "quads/stream_video_draw_quad.h", | 354 "quads/stream_video_draw_quad.h", |
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/y_video_draw_quad.cc", |
| 362 "quads/y_video_draw_quad.h", |
361 "quads/yuv_video_draw_quad.cc", | 363 "quads/yuv_video_draw_quad.cc", |
362 "quads/yuv_video_draw_quad.h", | 364 "quads/yuv_video_draw_quad.h", |
363 "raster/bitmap_raster_buffer_provider.cc", | 365 "raster/bitmap_raster_buffer_provider.cc", |
364 "raster/bitmap_raster_buffer_provider.h", | 366 "raster/bitmap_raster_buffer_provider.h", |
365 "raster/gpu_raster_buffer_provider.cc", | 367 "raster/gpu_raster_buffer_provider.cc", |
366 "raster/gpu_raster_buffer_provider.h", | 368 "raster/gpu_raster_buffer_provider.h", |
367 "raster/one_copy_raster_buffer_provider.cc", | 369 "raster/one_copy_raster_buffer_provider.cc", |
368 "raster/one_copy_raster_buffer_provider.h", | 370 "raster/one_copy_raster_buffer_provider.h", |
369 "raster/raster_buffer.cc", | 371 "raster/raster_buffer.cc", |
370 "raster/raster_buffer.h", | 372 "raster/raster_buffer.h", |
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1038 "//ui/gfx/geometry", | 1040 "//ui/gfx/geometry", |
1039 "//ui/gl", | 1041 "//ui/gl", |
1040 "//ui/gl:test_support", | 1042 "//ui/gl:test_support", |
1041 ] | 1043 ] |
1042 | 1044 |
1043 # This target should not require the Chrome executable to run. | 1045 # This target should not require the Chrome executable to run. |
1044 assert_no_deps = [ "//chrome" ] | 1046 assert_no_deps = [ "//chrome" ] |
1045 } | 1047 } |
1046 # When adding support for isolates, please have a look at run-time dependencies | 1048 # When adding support for isolates, please have a look at run-time dependencies |
1047 # in the cc_unittests_run target in cc_tests.gyp. | 1049 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |