| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("cc") { | 8 component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "animation/animation.cc", | 10 "animation/animation.cc", |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 "raster/gpu_tile_task_worker_pool.cc", | 368 "raster/gpu_tile_task_worker_pool.cc", |
| 369 "raster/gpu_tile_task_worker_pool.h", | 369 "raster/gpu_tile_task_worker_pool.h", |
| 370 "raster/one_copy_tile_task_worker_pool.cc", | 370 "raster/one_copy_tile_task_worker_pool.cc", |
| 371 "raster/one_copy_tile_task_worker_pool.h", | 371 "raster/one_copy_tile_task_worker_pool.h", |
| 372 "raster/raster_buffer.cc", | 372 "raster/raster_buffer.cc", |
| 373 "raster/raster_buffer.h", | 373 "raster/raster_buffer.h", |
| 374 "raster/scoped_gpu_raster.cc", | 374 "raster/scoped_gpu_raster.cc", |
| 375 "raster/scoped_gpu_raster.h", | 375 "raster/scoped_gpu_raster.h", |
| 376 "raster/single_thread_task_graph_runner.cc", | 376 "raster/single_thread_task_graph_runner.cc", |
| 377 "raster/single_thread_task_graph_runner.h", | 377 "raster/single_thread_task_graph_runner.h", |
| 378 "raster/staging_buffer_pool.cc", |
| 379 "raster/staging_buffer_pool.h", |
| 378 "raster/synchronous_task_graph_runner.cc", | 380 "raster/synchronous_task_graph_runner.cc", |
| 379 "raster/synchronous_task_graph_runner.h", | 381 "raster/synchronous_task_graph_runner.h", |
| 380 "raster/task_category.h", | 382 "raster/task_category.h", |
| 381 "raster/task_graph_runner.cc", | 383 "raster/task_graph_runner.cc", |
| 382 "raster/task_graph_runner.h", | 384 "raster/task_graph_runner.h", |
| 383 "raster/task_graph_work_queue.cc", | 385 "raster/task_graph_work_queue.cc", |
| 384 "raster/task_graph_work_queue.h", | 386 "raster/task_graph_work_queue.h", |
| 385 "raster/texture_compressor.cc", | 387 "raster/texture_compressor.cc", |
| 386 "raster/texture_compressor.h", | 388 "raster/texture_compressor.h", |
| 387 "raster/texture_compressor_etc1.cc", | 389 "raster/texture_compressor_etc1.cc", |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1006 "//ui/gl", | 1008 "//ui/gl", |
| 1007 "//ui/gl:test_support", | 1009 "//ui/gl:test_support", |
| 1008 ] | 1010 ] |
| 1009 | 1011 |
| 1010 if (is_android) { | 1012 if (is_android) { |
| 1011 isolate_file = "cc_perftests.isolate" | 1013 isolate_file = "cc_perftests.isolate" |
| 1012 } | 1014 } |
| 1013 } | 1015 } |
| 1014 # When adding support for isolates, please have a look at run-time dependencies | 1016 # When adding support for isolates, please have a look at run-time dependencies |
| 1015 # in the cc_unittests_run target in cc_tests.gyp. | 1017 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |