| 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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 "resources/ui_resource_bitmap.h", | 467 "resources/ui_resource_bitmap.h", |
| 468 "resources/ui_resource_client.h", | 468 "resources/ui_resource_client.h", |
| 469 "resources/ui_resource_request.cc", | 469 "resources/ui_resource_request.cc", |
| 470 "resources/ui_resource_request.h", | 470 "resources/ui_resource_request.h", |
| 471 "resources/video_resource_updater.cc", | 471 "resources/video_resource_updater.cc", |
| 472 "resources/video_resource_updater.h", | 472 "resources/video_resource_updater.h", |
| 473 "resources/zero_copy_tile_task_worker_pool.cc", | 473 "resources/zero_copy_tile_task_worker_pool.cc", |
| 474 "resources/zero_copy_tile_task_worker_pool.h", | 474 "resources/zero_copy_tile_task_worker_pool.h", |
| 475 "scheduler/begin_frame_source.cc", | 475 "scheduler/begin_frame_source.cc", |
| 476 "scheduler/begin_frame_source.h", | 476 "scheduler/begin_frame_source.h", |
| 477 "scheduler/begin_frame_tracker.cc", | |
| 478 "scheduler/begin_frame_tracker.h", | |
| 479 "scheduler/commit_earlyout_reason.h", | 477 "scheduler/commit_earlyout_reason.h", |
| 480 "scheduler/delay_based_time_source.cc", | 478 "scheduler/delay_based_time_source.cc", |
| 481 "scheduler/delay_based_time_source.h", | 479 "scheduler/delay_based_time_source.h", |
| 482 "scheduler/draw_result.h", | 480 "scheduler/draw_result.h", |
| 483 "scheduler/scheduler.cc", | 481 "scheduler/scheduler.cc", |
| 484 "scheduler/scheduler.h", | 482 "scheduler/scheduler.h", |
| 485 "scheduler/scheduler_settings.cc", | 483 "scheduler/scheduler_settings.cc", |
| 486 "scheduler/scheduler_settings.h", | 484 "scheduler/scheduler_settings.h", |
| 487 "scheduler/scheduler_state_machine.cc", | 485 "scheduler/scheduler_state_machine.cc", |
| 488 "scheduler/scheduler_state_machine.h", | 486 "scheduler/scheduler_state_machine.h", |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 921 "//testing/gmock", | 919 "//testing/gmock", |
| 922 "//testing/gtest", | 920 "//testing/gtest", |
| 923 "//testing/perf", | 921 "//testing/perf", |
| 924 "//ui/gfx", | 922 "//ui/gfx", |
| 925 "//ui/gfx/geometry", | 923 "//ui/gfx/geometry", |
| 926 "//ui/gl", | 924 "//ui/gl", |
| 927 ] | 925 ] |
| 928 } | 926 } |
| 929 # 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 |
| 930 # in the cc_unittests_run target in cc_tests.gyp. | 928 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |