| 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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 "resources/single_release_callback.h", | 414 "resources/single_release_callback.h", |
| 415 "resources/single_release_callback_impl.cc", | 415 "resources/single_release_callback_impl.cc", |
| 416 "resources/single_release_callback_impl.h", | 416 "resources/single_release_callback_impl.h", |
| 417 "resources/texture_mailbox.cc", | 417 "resources/texture_mailbox.cc", |
| 418 "resources/texture_mailbox.h", | 418 "resources/texture_mailbox.h", |
| 419 "resources/transferable_resource.cc", | 419 "resources/transferable_resource.cc", |
| 420 "resources/transferable_resource.h", | 420 "resources/transferable_resource.h", |
| 421 "resources/ui_resource_bitmap.cc", | 421 "resources/ui_resource_bitmap.cc", |
| 422 "resources/ui_resource_bitmap.h", | 422 "resources/ui_resource_bitmap.h", |
| 423 "resources/ui_resource_client.h", | 423 "resources/ui_resource_client.h", |
| 424 "resources/ui_resource_manager.cc", |
| 425 "resources/ui_resource_manager.h", |
| 424 "resources/ui_resource_request.cc", | 426 "resources/ui_resource_request.cc", |
| 425 "resources/ui_resource_request.h", | 427 "resources/ui_resource_request.h", |
| 426 "resources/video_resource_updater.cc", | 428 "resources/video_resource_updater.cc", |
| 427 "resources/video_resource_updater.h", | 429 "resources/video_resource_updater.h", |
| 428 "scheduler/begin_frame_source.cc", | 430 "scheduler/begin_frame_source.cc", |
| 429 "scheduler/begin_frame_source.h", | 431 "scheduler/begin_frame_source.h", |
| 430 "scheduler/begin_frame_tracker.cc", | 432 "scheduler/begin_frame_tracker.cc", |
| 431 "scheduler/begin_frame_tracker.h", | 433 "scheduler/begin_frame_tracker.h", |
| 432 "scheduler/commit_earlyout_reason.cc", | 434 "scheduler/commit_earlyout_reason.cc", |
| 433 "scheduler/commit_earlyout_reason.h", | 435 "scheduler/commit_earlyout_reason.h", |
| (...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1032 "//testing/perf", | 1034 "//testing/perf", |
| 1033 "//ui/gfx", | 1035 "//ui/gfx", |
| 1034 "//ui/gfx/geometry", | 1036 "//ui/gfx/geometry", |
| 1035 "//ui/gl", | 1037 "//ui/gl", |
| 1036 "//ui/gl:test_support", | 1038 "//ui/gl:test_support", |
| 1037 ] | 1039 ] |
| 1038 | 1040 |
| 1039 # This target should not require the Chrome executable to run. | 1041 # This target should not require the Chrome executable to run. |
| 1040 assert_no_deps = [ "//chrome" ] | 1042 assert_no_deps = [ "//chrome" ] |
| 1041 } | 1043 } |
| OLD | NEW |