| 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/texture_draw_quad.cc", | 347     "quads/texture_draw_quad.cc", | 
| 348     "quads/texture_draw_quad.h", | 348     "quads/texture_draw_quad.h", | 
| 349     "quads/tile_draw_quad.cc", | 349     "quads/tile_draw_quad.cc", | 
| 350     "quads/tile_draw_quad.h", | 350     "quads/tile_draw_quad.h", | 
| 351     "quads/yuv_video_draw_quad.cc", | 351     "quads/yuv_video_draw_quad.cc", | 
| 352     "quads/yuv_video_draw_quad.h", | 352     "quads/yuv_video_draw_quad.h", | 
| 353     "raster/bitmap_raster_buffer_provider.cc", | 353     "raster/bitmap_raster_buffer_provider.cc", | 
| 354     "raster/bitmap_raster_buffer_provider.h", | 354     "raster/bitmap_raster_buffer_provider.h", | 
| 355     "raster/gpu_raster_buffer_provider.cc", | 355     "raster/gpu_raster_buffer_provider.cc", | 
| 356     "raster/gpu_raster_buffer_provider.h", | 356     "raster/gpu_raster_buffer_provider.h", | 
|  | 357     "raster/gpu_rasterizer.cc", | 
|  | 358     "raster/gpu_rasterizer.h", | 
| 357     "raster/one_copy_raster_buffer_provider.cc", | 359     "raster/one_copy_raster_buffer_provider.cc", | 
| 358     "raster/one_copy_raster_buffer_provider.h", | 360     "raster/one_copy_raster_buffer_provider.h", | 
| 359     "raster/raster_buffer.cc", | 361     "raster/raster_buffer.cc", | 
| 360     "raster/raster_buffer.h", | 362     "raster/raster_buffer.h", | 
| 361     "raster/raster_buffer_provider.cc", | 363     "raster/raster_buffer_provider.cc", | 
| 362     "raster/raster_buffer_provider.h", | 364     "raster/raster_buffer_provider.h", | 
| 363     "raster/scoped_gpu_raster.cc", | 365     "raster/scoped_gpu_raster.cc", | 
| 364     "raster/scoped_gpu_raster.h", | 366     "raster/scoped_gpu_raster.h", | 
| 365     "raster/single_thread_task_graph_runner.cc", | 367     "raster/single_thread_task_graph_runner.cc", | 
| 366     "raster/single_thread_task_graph_runner.h", | 368     "raster/single_thread_task_graph_runner.h", | 
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1018     "//ui/gfx/geometry", | 1020     "//ui/gfx/geometry", | 
| 1019     "//ui/gl", | 1021     "//ui/gl", | 
| 1020     "//ui/gl:test_support", | 1022     "//ui/gl:test_support", | 
| 1021   ] | 1023   ] | 
| 1022 | 1024 | 
| 1023   # This target should not require the Chrome executable to run. | 1025   # This target should not require the Chrome executable to run. | 
| 1024   assert_no_deps = [ "//chrome" ] | 1026   assert_no_deps = [ "//chrome" ] | 
| 1025 } | 1027 } | 
| 1026 # When adding support for isolates, please have a look at run-time dependencies | 1028 # When adding support for isolates, please have a look at run-time dependencies | 
| 1027 # in the cc_unittests_run target in cc_tests.gyp. | 1029 # in the cc_unittests_run target in cc_tests.gyp. | 
| OLD | NEW | 
|---|