| 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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 "resources/transferable_resource.h", | 439 "resources/transferable_resource.h", |
| 440 "resources/ui_resource_bitmap.cc", | 440 "resources/ui_resource_bitmap.cc", |
| 441 "resources/ui_resource_bitmap.h", | 441 "resources/ui_resource_bitmap.h", |
| 442 "resources/ui_resource_client.h", | 442 "resources/ui_resource_client.h", |
| 443 "resources/ui_resource_request.cc", | 443 "resources/ui_resource_request.cc", |
| 444 "resources/ui_resource_request.h", | 444 "resources/ui_resource_request.h", |
| 445 "resources/video_resource_updater.cc", | 445 "resources/video_resource_updater.cc", |
| 446 "resources/video_resource_updater.h", | 446 "resources/video_resource_updater.h", |
| 447 "scheduler/begin_frame_source.cc", | 447 "scheduler/begin_frame_source.cc", |
| 448 "scheduler/begin_frame_source.h", | 448 "scheduler/begin_frame_source.h", |
| 449 "scheduler/begin_frame_tracker.cc", |
| 450 "scheduler/begin_frame_tracker.h", |
| 449 "scheduler/commit_earlyout_reason.h", | 451 "scheduler/commit_earlyout_reason.h", |
| 450 "scheduler/delay_based_time_source.cc", | 452 "scheduler/delay_based_time_source.cc", |
| 451 "scheduler/delay_based_time_source.h", | 453 "scheduler/delay_based_time_source.h", |
| 452 "scheduler/draw_result.h", | 454 "scheduler/draw_result.h", |
| 453 "scheduler/scheduler.cc", | 455 "scheduler/scheduler.cc", |
| 454 "scheduler/scheduler.h", | 456 "scheduler/scheduler.h", |
| 455 "scheduler/scheduler_settings.cc", | 457 "scheduler/scheduler_settings.cc", |
| 456 "scheduler/scheduler_settings.h", | 458 "scheduler/scheduler_settings.h", |
| 457 "scheduler/scheduler_state_machine.cc", | 459 "scheduler/scheduler_state_machine.cc", |
| 458 "scheduler/scheduler_state_machine.h", | 460 "scheduler/scheduler_state_machine.h", |
| (...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 953 "//testing/gmock", | 955 "//testing/gmock", |
| 954 "//testing/gtest", | 956 "//testing/gtest", |
| 955 "//testing/perf", | 957 "//testing/perf", |
| 956 "//ui/gfx", | 958 "//ui/gfx", |
| 957 "//ui/gfx/geometry", | 959 "//ui/gfx/geometry", |
| 958 "//ui/gl", | 960 "//ui/gl", |
| 959 ] | 961 ] |
| 960 } | 962 } |
| 961 # When adding support for isolates, please have a look at run-time dependencies | 963 # When adding support for isolates, please have a look at run-time dependencies |
| 962 # in the cc_unittests_run target in cc_tests.gyp. | 964 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |