| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 "quads/solid_color_draw_quad.cc", | 368 "quads/solid_color_draw_quad.cc", |
| 369 "quads/solid_color_draw_quad.h", | 369 "quads/solid_color_draw_quad.h", |
| 370 "quads/stream_video_draw_quad.cc", | 370 "quads/stream_video_draw_quad.cc", |
| 371 "quads/stream_video_draw_quad.h", | 371 "quads/stream_video_draw_quad.h", |
| 372 "quads/surface_draw_quad.cc", | 372 "quads/surface_draw_quad.cc", |
| 373 "quads/surface_draw_quad.h", | 373 "quads/surface_draw_quad.h", |
| 374 "quads/texture_draw_quad.cc", | 374 "quads/texture_draw_quad.cc", |
| 375 "quads/texture_draw_quad.h", | 375 "quads/texture_draw_quad.h", |
| 376 "quads/tile_draw_quad.cc", | 376 "quads/tile_draw_quad.cc", |
| 377 "quads/tile_draw_quad.h", | 377 "quads/tile_draw_quad.h", |
| 378 "quads/y_video_draw_quad.cc", |
| 379 "quads/y_video_draw_quad.h", |
| 378 "quads/yuv_video_draw_quad.cc", | 380 "quads/yuv_video_draw_quad.cc", |
| 379 "quads/yuv_video_draw_quad.h", | 381 "quads/yuv_video_draw_quad.h", |
| 380 "raster/bitmap_raster_buffer_provider.cc", | 382 "raster/bitmap_raster_buffer_provider.cc", |
| 381 "raster/bitmap_raster_buffer_provider.h", | 383 "raster/bitmap_raster_buffer_provider.h", |
| 382 "raster/gpu_raster_buffer_provider.cc", | 384 "raster/gpu_raster_buffer_provider.cc", |
| 383 "raster/gpu_raster_buffer_provider.h", | 385 "raster/gpu_raster_buffer_provider.h", |
| 384 "raster/one_copy_raster_buffer_provider.cc", | 386 "raster/one_copy_raster_buffer_provider.cc", |
| 385 "raster/one_copy_raster_buffer_provider.h", | 387 "raster/one_copy_raster_buffer_provider.h", |
| 386 "raster/raster_buffer.cc", | 388 "raster/raster_buffer.cc", |
| 387 "raster/raster_buffer.h", | 389 "raster/raster_buffer.h", |
| (...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 "//ui/gl:test_support", | 1082 "//ui/gl:test_support", |
| 1081 ] | 1083 ] |
| 1082 | 1084 |
| 1083 # This target should not require the Chrome executable to run. | 1085 # This target should not require the Chrome executable to run. |
| 1084 assert_no_deps = [ "//chrome" ] | 1086 assert_no_deps = [ "//chrome" ] |
| 1085 | 1087 |
| 1086 data = [ | 1088 data = [ |
| 1087 "test/data/", | 1089 "test/data/", |
| 1088 ] | 1090 ] |
| 1089 } | 1091 } |
| OLD | NEW |