| 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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 "resources/bitmap_content_layer_updater.cc", | 337 "resources/bitmap_content_layer_updater.cc", |
| 338 "resources/bitmap_content_layer_updater.h", | 338 "resources/bitmap_content_layer_updater.h", |
| 339 "resources/bitmap_skpicture_content_layer_updater.cc", | 339 "resources/bitmap_skpicture_content_layer_updater.cc", |
| 340 "resources/bitmap_skpicture_content_layer_updater.h", | 340 "resources/bitmap_skpicture_content_layer_updater.h", |
| 341 "resources/bitmap_tile_task_worker_pool.cc", | 341 "resources/bitmap_tile_task_worker_pool.cc", |
| 342 "resources/bitmap_tile_task_worker_pool.h", | 342 "resources/bitmap_tile_task_worker_pool.h", |
| 343 "resources/clip_display_item.cc", | 343 "resources/clip_display_item.cc", |
| 344 "resources/clip_display_item.h", | 344 "resources/clip_display_item.h", |
| 345 "resources/clip_path_display_item.cc", | 345 "resources/clip_path_display_item.cc", |
| 346 "resources/clip_path_display_item.h", | 346 "resources/clip_path_display_item.h", |
| 347 "resources/compositing_display_item.cc", |
| 348 "resources/compositing_display_item.h", |
| 347 "resources/content_layer_updater.cc", | 349 "resources/content_layer_updater.cc", |
| 348 "resources/content_layer_updater.h", | 350 "resources/content_layer_updater.h", |
| 349 "resources/display_item.cc", | 351 "resources/display_item.cc", |
| 350 "resources/display_item.h", | 352 "resources/display_item.h", |
| 351 "resources/display_item_list.cc", | 353 "resources/display_item_list.cc", |
| 352 "resources/display_item_list.h", | 354 "resources/display_item_list.h", |
| 353 "resources/display_list_raster_source.cc", | 355 "resources/display_list_raster_source.cc", |
| 354 "resources/display_list_raster_source.h", | 356 "resources/display_list_raster_source.h", |
| 355 "resources/display_list_recording_source.cc", | 357 "resources/display_list_recording_source.cc", |
| 356 "resources/display_list_recording_source.h", | 358 "resources/display_list_recording_source.h", |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 918 "//media", | 920 "//media", |
| 919 "//skia", | 921 "//skia", |
| 920 "//testing/gmock", | 922 "//testing/gmock", |
| 921 "//testing/gtest", | 923 "//testing/gtest", |
| 922 "//testing/perf", | 924 "//testing/perf", |
| 923 "//ui/gfx", | 925 "//ui/gfx", |
| 924 "//ui/gfx/geometry", | 926 "//ui/gfx/geometry", |
| 925 "//ui/gl", | 927 "//ui/gl", |
| 926 ] | 928 ] |
| 927 } | 929 } |
| OLD | NEW |