| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 component("cc") { | 7 component("cc") { |
| 8 sources = [ | 8 sources = [ |
| 9 "animation/animation.cc", | 9 "animation/animation.cc", |
| 10 "animation/animation.h", | 10 "animation/animation.h", |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 "resources/raster_buffer.h", | 388 "resources/raster_buffer.h", |
| 389 "resources/raster_source.h", | 389 "resources/raster_source.h", |
| 390 "resources/raster_source_helper.cc", | 390 "resources/raster_source_helper.cc", |
| 391 "resources/raster_source_helper.h", | 391 "resources/raster_source_helper.h", |
| 392 "resources/raster_tile_priority_queue.cc", | 392 "resources/raster_tile_priority_queue.cc", |
| 393 "resources/raster_tile_priority_queue.h", | 393 "resources/raster_tile_priority_queue.h", |
| 394 "resources/raster_tile_priority_queue_all.cc", | 394 "resources/raster_tile_priority_queue_all.cc", |
| 395 "resources/raster_tile_priority_queue_all.h", | 395 "resources/raster_tile_priority_queue_all.h", |
| 396 "resources/raster_tile_priority_queue_required.cc", | 396 "resources/raster_tile_priority_queue_required.cc", |
| 397 "resources/raster_tile_priority_queue_required.h", | 397 "resources/raster_tile_priority_queue_required.h", |
| 398 "resources/rasterizer.h", | |
| 399 "resources/release_callback.h", | 398 "resources/release_callback.h", |
| 400 "resources/resource.cc", | 399 "resources/resource.cc", |
| 401 "resources/resource.h", | 400 "resources/resource.h", |
| 402 "resources/resource_format.cc", | 401 "resources/resource_format.cc", |
| 403 "resources/resource_format.h", | 402 "resources/resource_format.h", |
| 404 "resources/resource_pool.cc", | 403 "resources/resource_pool.cc", |
| 405 "resources/resource_pool.h", | 404 "resources/resource_pool.h", |
| 406 "resources/resource_provider.cc", | 405 "resources/resource_provider.cc", |
| 407 "resources/resource_provider.h", | 406 "resources/resource_provider.h", |
| 408 "resources/resource_update.cc", | 407 "resources/resource_update.cc", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 420 "resources/scoped_ui_resource.h", | 419 "resources/scoped_ui_resource.h", |
| 421 "resources/shared_bitmap.cc", | 420 "resources/shared_bitmap.cc", |
| 422 "resources/shared_bitmap.h", | 421 "resources/shared_bitmap.h", |
| 423 "resources/shared_bitmap_manager.h", | 422 "resources/shared_bitmap_manager.h", |
| 424 "resources/single_release_callback.cc", | 423 "resources/single_release_callback.cc", |
| 425 "resources/single_release_callback.h", | 424 "resources/single_release_callback.h", |
| 426 "resources/single_release_callback_impl.cc", | 425 "resources/single_release_callback_impl.cc", |
| 427 "resources/single_release_callback_impl.h", | 426 "resources/single_release_callback_impl.h", |
| 428 "resources/skpicture_content_layer_updater.cc", | 427 "resources/skpicture_content_layer_updater.cc", |
| 429 "resources/skpicture_content_layer_updater.h", | 428 "resources/skpicture_content_layer_updater.h", |
| 430 "resources/software_rasterizer.cc", | |
| 431 "resources/software_rasterizer.h", | |
| 432 "resources/task_graph_runner.cc", | 429 "resources/task_graph_runner.cc", |
| 433 "resources/task_graph_runner.h", | 430 "resources/task_graph_runner.h", |
| 434 "resources/texture_compressor.cc", | 431 "resources/texture_compressor.cc", |
| 435 "resources/texture_compressor.h", | 432 "resources/texture_compressor.h", |
| 436 "resources/texture_compressor_etc1.cc", | 433 "resources/texture_compressor_etc1.cc", |
| 437 "resources/texture_compressor_etc1.h", | 434 "resources/texture_compressor_etc1.h", |
| 438 "resources/texture_mailbox.cc", | 435 "resources/texture_mailbox.cc", |
| 439 "resources/texture_mailbox.h", | 436 "resources/texture_mailbox.h", |
| 440 "resources/texture_mailbox_deleter.cc", | 437 "resources/texture_mailbox_deleter.cc", |
| 441 "resources/texture_mailbox_deleter.h", | 438 "resources/texture_mailbox_deleter.h", |
| (...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 914 "//testing/gmock", | 911 "//testing/gmock", |
| 915 "//testing/gtest", | 912 "//testing/gtest", |
| 916 "//testing/perf", | 913 "//testing/perf", |
| 917 "//ui/gfx", | 914 "//ui/gfx", |
| 918 "//ui/gfx/geometry", | 915 "//ui/gfx/geometry", |
| 919 "//ui/gl", | 916 "//ui/gl", |
| 920 ] | 917 ] |
| 921 } | 918 } |
| 922 # When adding support for isolates, please have a look at run-time dependencies | 919 # When adding support for isolates, please have a look at run-time dependencies |
| 923 # in the cc_unittests_run target in cc_tests.gyp. | 920 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |