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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 "trees/proxy_common.h", | 515 "trees/proxy_common.h", |
516 "trees/proxy_impl.cc", | 516 "trees/proxy_impl.cc", |
517 "trees/proxy_impl.h", | 517 "trees/proxy_impl.h", |
518 "trees/proxy_main.cc", | 518 "trees/proxy_main.cc", |
519 "trees/proxy_main.h", | 519 "trees/proxy_main.h", |
520 "trees/remote_channel_impl.cc", | 520 "trees/remote_channel_impl.cc", |
521 "trees/remote_channel_impl.h", | 521 "trees/remote_channel_impl.h", |
522 "trees/remote_channel_main.cc", | 522 "trees/remote_channel_main.cc", |
523 "trees/remote_channel_main.h", | 523 "trees/remote_channel_main.h", |
524 "trees/remote_proto_channel.h", | 524 "trees/remote_proto_channel.h", |
| 525 "trees/root_scroller_controller.cc", |
| 526 "trees/root_scroller_controller.h", |
525 "trees/scoped_abort_remaining_swap_promises.h", | 527 "trees/scoped_abort_remaining_swap_promises.h", |
526 "trees/single_thread_proxy.cc", | 528 "trees/single_thread_proxy.cc", |
527 "trees/single_thread_proxy.h", | 529 "trees/single_thread_proxy.h", |
528 "trees/swap_promise_monitor.cc", | 530 "trees/swap_promise_monitor.cc", |
529 "trees/swap_promise_monitor.h", | 531 "trees/swap_promise_monitor.h", |
530 "trees/task_runner_provider.cc", | 532 "trees/task_runner_provider.cc", |
531 "trees/task_runner_provider.h", | 533 "trees/task_runner_provider.h", |
532 "trees/threaded_channel.cc", | 534 "trees/threaded_channel.cc", |
533 "trees/threaded_channel.h", | 535 "trees/threaded_channel.h", |
534 "trees/tree_synchronizer.cc", | 536 "trees/tree_synchronizer.cc", |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1028 "//ui/gfx/geometry", | 1030 "//ui/gfx/geometry", |
1029 "//ui/gl", | 1031 "//ui/gl", |
1030 "//ui/gl:test_support", | 1032 "//ui/gl:test_support", |
1031 ] | 1033 ] |
1032 | 1034 |
1033 # This target should not require the Chrome executable to run. | 1035 # This target should not require the Chrome executable to run. |
1034 assert_no_deps = [ "//chrome" ] | 1036 assert_no_deps = [ "//chrome" ] |
1035 } | 1037 } |
1036 # When adding support for isolates, please have a look at run-time dependencies | 1038 # When adding support for isolates, please have a look at run-time dependencies |
1037 # in the cc_unittests_run target in cc_tests.gyp. | 1039 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |