| 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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 "resources/filter_display_item.cc", | 346 "resources/filter_display_item.cc", |
| 347 "resources/filter_display_item.h", | 347 "resources/filter_display_item.h", |
| 348 "resources/float_clip_display_item.cc", | 348 "resources/float_clip_display_item.cc", |
| 349 "resources/float_clip_display_item.h", | 349 "resources/float_clip_display_item.h", |
| 350 "resources/gpu_rasterizer.cc", | 350 "resources/gpu_rasterizer.cc", |
| 351 "resources/gpu_rasterizer.h", | 351 "resources/gpu_rasterizer.h", |
| 352 "resources/gpu_tile_task_worker_pool.cc", | 352 "resources/gpu_tile_task_worker_pool.cc", |
| 353 "resources/gpu_tile_task_worker_pool.h", | 353 "resources/gpu_tile_task_worker_pool.h", |
| 354 "resources/image_layer_updater.cc", | 354 "resources/image_layer_updater.cc", |
| 355 "resources/image_layer_updater.h", | 355 "resources/image_layer_updater.h", |
| 356 "resources/largest_display_item.cc", |
| 357 "resources/largest_display_item.h", |
| 356 "resources/layer_painter.h", | 358 "resources/layer_painter.h", |
| 357 "resources/layer_quad.cc", | 359 "resources/layer_quad.cc", |
| 358 "resources/layer_quad.h", | 360 "resources/layer_quad.h", |
| 359 "resources/layer_tiling_data.cc", | 361 "resources/layer_tiling_data.cc", |
| 360 "resources/layer_tiling_data.h", | 362 "resources/layer_tiling_data.h", |
| 361 "resources/layer_updater.cc", | 363 "resources/layer_updater.cc", |
| 362 "resources/layer_updater.h", | 364 "resources/layer_updater.h", |
| 363 "resources/memory_history.cc", | 365 "resources/memory_history.cc", |
| 364 "resources/memory_history.h", | 366 "resources/memory_history.h", |
| 365 "resources/one_copy_tile_task_worker_pool.cc", | 367 "resources/one_copy_tile_task_worker_pool.cc", |
| (...skipping 551 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 |