| 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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 "trees/remote_channel_impl.cc", | 538 "trees/remote_channel_impl.cc", |
| 539 "trees/remote_channel_impl.h", | 539 "trees/remote_channel_impl.h", |
| 540 "trees/remote_channel_main.cc", | 540 "trees/remote_channel_main.cc", |
| 541 "trees/remote_channel_main.h", | 541 "trees/remote_channel_main.h", |
| 542 "trees/remote_proto_channel.h", | 542 "trees/remote_proto_channel.h", |
| 543 "trees/scoped_abort_remaining_swap_promises.h", | 543 "trees/scoped_abort_remaining_swap_promises.h", |
| 544 "trees/scroll_node.cc", | 544 "trees/scroll_node.cc", |
| 545 "trees/scroll_node.h", | 545 "trees/scroll_node.h", |
| 546 "trees/single_thread_proxy.cc", | 546 "trees/single_thread_proxy.cc", |
| 547 "trees/single_thread_proxy.h", | 547 "trees/single_thread_proxy.h", |
| 548 "trees/surface_sequence_generator.cc", | |
| 549 "trees/surface_sequence_generator.h", | |
| 550 "trees/swap_promise_manager.cc", | 548 "trees/swap_promise_manager.cc", |
| 551 "trees/swap_promise_manager.h", | 549 "trees/swap_promise_manager.h", |
| 552 "trees/swap_promise_monitor.cc", | 550 "trees/swap_promise_monitor.cc", |
| 553 "trees/swap_promise_monitor.h", | 551 "trees/swap_promise_monitor.h", |
| 554 "trees/task_runner_provider.cc", | 552 "trees/task_runner_provider.cc", |
| 555 "trees/task_runner_provider.h", | 553 "trees/task_runner_provider.h", |
| 556 "trees/threaded_channel.cc", | 554 "trees/threaded_channel.cc", |
| 557 "trees/threaded_channel.h", | 555 "trees/threaded_channel.h", |
| 558 "trees/transform_node.cc", | 556 "trees/transform_node.cc", |
| 559 "trees/transform_node.h", | 557 "trees/transform_node.h", |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1058 "//ui/gl:test_support", | 1056 "//ui/gl:test_support", |
| 1059 ] | 1057 ] |
| 1060 | 1058 |
| 1061 # This target should not require the Chrome executable to run. | 1059 # This target should not require the Chrome executable to run. |
| 1062 assert_no_deps = [ "//chrome" ] | 1060 assert_no_deps = [ "//chrome" ] |
| 1063 | 1061 |
| 1064 data = [ | 1062 data = [ |
| 1065 "test/data/", | 1063 "test/data/", |
| 1066 ] | 1064 ] |
| 1067 } | 1065 } |
| OLD | NEW |