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