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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 "quads/solid_color_draw_quad.cc", | 362 "quads/solid_color_draw_quad.cc", |
363 "quads/solid_color_draw_quad.h", | 363 "quads/solid_color_draw_quad.h", |
364 "quads/stream_video_draw_quad.cc", | 364 "quads/stream_video_draw_quad.cc", |
365 "quads/stream_video_draw_quad.h", | 365 "quads/stream_video_draw_quad.h", |
366 "quads/surface_draw_quad.cc", | 366 "quads/surface_draw_quad.cc", |
367 "quads/surface_draw_quad.h", | 367 "quads/surface_draw_quad.h", |
368 "quads/texture_draw_quad.cc", | 368 "quads/texture_draw_quad.cc", |
369 "quads/texture_draw_quad.h", | 369 "quads/texture_draw_quad.h", |
370 "quads/tile_draw_quad.cc", | 370 "quads/tile_draw_quad.cc", |
371 "quads/tile_draw_quad.h", | 371 "quads/tile_draw_quad.h", |
| 372 "quads/y_video_draw_quad.cc", |
| 373 "quads/y_video_draw_quad.h", |
372 "quads/yuv_video_draw_quad.cc", | 374 "quads/yuv_video_draw_quad.cc", |
373 "quads/yuv_video_draw_quad.h", | 375 "quads/yuv_video_draw_quad.h", |
374 "raster/bitmap_raster_buffer_provider.cc", | 376 "raster/bitmap_raster_buffer_provider.cc", |
375 "raster/bitmap_raster_buffer_provider.h", | 377 "raster/bitmap_raster_buffer_provider.h", |
376 "raster/gpu_raster_buffer_provider.cc", | 378 "raster/gpu_raster_buffer_provider.cc", |
377 "raster/gpu_raster_buffer_provider.h", | 379 "raster/gpu_raster_buffer_provider.h", |
378 "raster/one_copy_raster_buffer_provider.cc", | 380 "raster/one_copy_raster_buffer_provider.cc", |
379 "raster/one_copy_raster_buffer_provider.h", | 381 "raster/one_copy_raster_buffer_provider.h", |
380 "raster/raster_buffer.cc", | 382 "raster/raster_buffer.cc", |
381 "raster/raster_buffer.h", | 383 "raster/raster_buffer.h", |
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1073 "//ui/gl:test_support", | 1075 "//ui/gl:test_support", |
1074 ] | 1076 ] |
1075 | 1077 |
1076 # This target should not require the Chrome executable to run. | 1078 # This target should not require the Chrome executable to run. |
1077 assert_no_deps = [ "//chrome" ] | 1079 assert_no_deps = [ "//chrome" ] |
1078 | 1080 |
1079 data = [ | 1081 data = [ |
1080 "test/data/", | 1082 "test/data/", |
1081 ] | 1083 ] |
1082 } | 1084 } |
OLD | NEW |