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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 "resources/picture_pile_impl.h", | 376 "resources/picture_pile_impl.h", |
377 "resources/pixel_buffer_tile_task_worker_pool.cc", | 377 "resources/pixel_buffer_tile_task_worker_pool.cc", |
378 "resources/pixel_buffer_tile_task_worker_pool.h", | 378 "resources/pixel_buffer_tile_task_worker_pool.h", |
379 "resources/pixel_ref_map.cc", | 379 "resources/pixel_ref_map.cc", |
380 "resources/pixel_ref_map.h", | 380 "resources/pixel_ref_map.h", |
381 "resources/platform_color.h", | 381 "resources/platform_color.h", |
382 "resources/prioritized_resource.cc", | 382 "resources/prioritized_resource.cc", |
383 "resources/prioritized_resource.h", | 383 "resources/prioritized_resource.h", |
384 "resources/prioritized_resource_manager.cc", | 384 "resources/prioritized_resource_manager.cc", |
385 "resources/prioritized_resource_manager.h", | 385 "resources/prioritized_resource_manager.h", |
| 386 "resources/prioritized_tile.cc", |
| 387 "resources/prioritized_tile.h", |
386 "resources/priority_calculator.cc", | 388 "resources/priority_calculator.cc", |
387 "resources/priority_calculator.h", | 389 "resources/priority_calculator.h", |
388 "resources/raster_buffer.cc", | 390 "resources/raster_buffer.cc", |
389 "resources/raster_buffer.h", | 391 "resources/raster_buffer.h", |
390 "resources/raster_source.h", | 392 "resources/raster_source.h", |
391 "resources/raster_source_helper.cc", | 393 "resources/raster_source_helper.cc", |
392 "resources/raster_source_helper.h", | 394 "resources/raster_source_helper.h", |
393 "resources/raster_tile_priority_queue.cc", | 395 "resources/raster_tile_priority_queue.cc", |
394 "resources/raster_tile_priority_queue.h", | 396 "resources/raster_tile_priority_queue.h", |
395 "resources/raster_tile_priority_queue_all.cc", | 397 "resources/raster_tile_priority_queue_all.cc", |
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
917 "//testing/gmock", | 919 "//testing/gmock", |
918 "//testing/gtest", | 920 "//testing/gtest", |
919 "//testing/perf", | 921 "//testing/perf", |
920 "//ui/gfx", | 922 "//ui/gfx", |
921 "//ui/gfx/geometry", | 923 "//ui/gfx/geometry", |
922 "//ui/gl", | 924 "//ui/gl", |
923 ] | 925 ] |
924 } | 926 } |
925 # When adding support for isolates, please have a look at run-time dependencies | 927 # When adding support for isolates, please have a look at run-time dependencies |
926 # in the cc_unittests_run target in cc_tests.gyp. | 928 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |