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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 "raster/texture_compressor.cc", | 365 "raster/texture_compressor.cc", |
366 "raster/texture_compressor.h", | 366 "raster/texture_compressor.h", |
367 "raster/texture_compressor_etc1.cc", | 367 "raster/texture_compressor_etc1.cc", |
368 "raster/texture_compressor_etc1.h", | 368 "raster/texture_compressor_etc1.h", |
369 "raster/tile_task_runner.cc", | 369 "raster/tile_task_runner.cc", |
370 "raster/tile_task_runner.h", | 370 "raster/tile_task_runner.h", |
371 "raster/tile_task_worker_pool.cc", | 371 "raster/tile_task_worker_pool.cc", |
372 "raster/tile_task_worker_pool.h", | 372 "raster/tile_task_worker_pool.h", |
373 "raster/zero_copy_tile_task_worker_pool.cc", | 373 "raster/zero_copy_tile_task_worker_pool.cc", |
374 "raster/zero_copy_tile_task_worker_pool.h", | 374 "raster/zero_copy_tile_task_worker_pool.h", |
375 "resources/bitmap_content_layer_updater.cc", | |
376 "resources/bitmap_content_layer_updater.h", | |
377 "resources/content_layer_updater.cc", | |
378 "resources/content_layer_updater.h", | |
379 "resources/layer_painter.h", | |
380 "resources/layer_updater.cc", | |
381 "resources/layer_updater.h", | |
382 "resources/memory_history.cc", | 375 "resources/memory_history.cc", |
383 "resources/memory_history.h", | 376 "resources/memory_history.h", |
384 "resources/platform_color.h", | 377 "resources/platform_color.h", |
385 "resources/prioritized_resource.cc", | 378 "resources/prioritized_resource.cc", |
386 "resources/prioritized_resource.h", | 379 "resources/prioritized_resource.h", |
387 "resources/prioritized_resource_manager.cc", | 380 "resources/prioritized_resource_manager.cc", |
388 "resources/prioritized_resource_manager.h", | 381 "resources/prioritized_resource_manager.h", |
389 "resources/priority_calculator.cc", | 382 "resources/priority_calculator.cc", |
390 "resources/priority_calculator.h", | 383 "resources/priority_calculator.h", |
391 "resources/release_callback.h", | 384 "resources/release_callback.h", |
392 "resources/resource.h", | 385 "resources/resource.h", |
393 "resources/resource_format.cc", | 386 "resources/resource_format.cc", |
394 "resources/resource_format.h", | 387 "resources/resource_format.h", |
395 "resources/resource_pool.cc", | 388 "resources/resource_pool.cc", |
396 "resources/resource_pool.h", | 389 "resources/resource_pool.h", |
397 "resources/resource_provider.cc", | 390 "resources/resource_provider.cc", |
398 "resources/resource_provider.h", | 391 "resources/resource_provider.h", |
399 "resources/resource_update.cc", | |
400 "resources/resource_update.h", | |
401 "resources/resource_update_controller.cc", | |
402 "resources/resource_update_controller.h", | |
403 "resources/resource_update_queue.cc", | |
404 "resources/resource_update_queue.h", | |
405 "resources/returned_resource.h", | 392 "resources/returned_resource.h", |
406 "resources/scoped_resource.cc", | 393 "resources/scoped_resource.cc", |
407 "resources/scoped_resource.h", | 394 "resources/scoped_resource.h", |
408 "resources/scoped_ui_resource.cc", | 395 "resources/scoped_ui_resource.cc", |
409 "resources/scoped_ui_resource.h", | 396 "resources/scoped_ui_resource.h", |
410 "resources/shared_bitmap.cc", | 397 "resources/shared_bitmap.cc", |
411 "resources/shared_bitmap.h", | 398 "resources/shared_bitmap.h", |
412 "resources/shared_bitmap_manager.h", | 399 "resources/shared_bitmap_manager.h", |
413 "resources/single_release_callback.cc", | 400 "resources/single_release_callback.cc", |
414 "resources/single_release_callback.h", | 401 "resources/single_release_callback.h", |
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
899 "//ui/gfx/geometry", | 886 "//ui/gfx/geometry", |
900 "//ui/gl", | 887 "//ui/gl", |
901 ] | 888 ] |
902 | 889 |
903 if (is_android) { | 890 if (is_android) { |
904 isolate_file = "cc_perftests.isolate" | 891 isolate_file = "cc_perftests.isolate" |
905 } | 892 } |
906 } | 893 } |
907 # When adding support for isolates, please have a look at run-time dependencies | 894 # When adding support for isolates, please have a look at run-time dependencies |
908 # in the cc_unittests_run target in cc_tests.gyp. | 895 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |