| 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 component("cc") { | 5 component("cc") { |
| 6 sources = [ | 6 sources = [ |
| 7 "animation/animation.cc", | 7 "animation/animation.cc", |
| 8 "animation/animation.h", | 8 "animation/animation.h", |
| 9 "animation/animation_curve.cc", | 9 "animation/animation_curve.cc", |
| 10 "animation/animation_curve.h", | 10 "animation/animation_curve.h", |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 "resources/priority_calculator.h", | 387 "resources/priority_calculator.h", |
| 388 "resources/raster_buffer.cc", | 388 "resources/raster_buffer.cc", |
| 389 "resources/raster_buffer.h", | 389 "resources/raster_buffer.h", |
| 390 "resources/raster_source.h", | 390 "resources/raster_source.h", |
| 391 "resources/raster_source_helper.cc", | 391 "resources/raster_source_helper.cc", |
| 392 "resources/raster_source_helper.h", | 392 "resources/raster_source_helper.h", |
| 393 "resources/raster_tile_priority_queue.cc", | 393 "resources/raster_tile_priority_queue.cc", |
| 394 "resources/raster_tile_priority_queue.h", | 394 "resources/raster_tile_priority_queue.h", |
| 395 "resources/raster_worker_pool.cc", | 395 "resources/raster_worker_pool.cc", |
| 396 "resources/raster_worker_pool.h", | 396 "resources/raster_worker_pool.h", |
| 397 "resources/rasterizer.cc", | 397 "resources/tile_task_runner.cc", |
| 398 "resources/rasterizer.h", | 398 "resources/tile_task_runner.h", |
| 399 "resources/release_callback.h", | 399 "resources/release_callback.h", |
| 400 "resources/resource.cc", | 400 "resources/resource.cc", |
| 401 "resources/resource.h", | 401 "resources/resource.h", |
| 402 "resources/resource_format.cc", | 402 "resources/resource_format.cc", |
| 403 "resources/resource_format.h", | 403 "resources/resource_format.h", |
| 404 "resources/resource_pool.cc", | 404 "resources/resource_pool.cc", |
| 405 "resources/resource_pool.h", | 405 "resources/resource_pool.h", |
| 406 "resources/resource_provider.cc", | 406 "resources/resource_provider.cc", |
| 407 "resources/resource_provider.h", | 407 "resources/resource_provider.h", |
| 408 "resources/resource_update.cc", | 408 "resources/resource_update.cc", |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 871 "//media", | 871 "//media", |
| 872 "//skia", | 872 "//skia", |
| 873 "//testing/gmock", | 873 "//testing/gmock", |
| 874 "//testing/gtest", | 874 "//testing/gtest", |
| 875 "//testing/perf", | 875 "//testing/perf", |
| 876 "//ui/gfx", | 876 "//ui/gfx", |
| 877 "//ui/gfx/geometry", | 877 "//ui/gfx/geometry", |
| 878 "//ui/gl", | 878 "//ui/gl", |
| 879 ] | 879 ] |
| 880 } | 880 } |
| OLD | NEW |