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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 "trees/occlusion.cc", | 478 "trees/occlusion.cc", |
479 "trees/occlusion.h", | 479 "trees/occlusion.h", |
480 "trees/occlusion_tracker.cc", | 480 "trees/occlusion_tracker.cc", |
481 "trees/occlusion_tracker.h", | 481 "trees/occlusion_tracker.h", |
482 "trees/property_tree.cc", | 482 "trees/property_tree.cc", |
483 "trees/property_tree.h", | 483 "trees/property_tree.h", |
484 "trees/property_tree_builder.cc", | 484 "trees/property_tree_builder.cc", |
485 "trees/property_tree_builder.h", | 485 "trees/property_tree_builder.h", |
486 "trees/proxy.cc", | 486 "trees/proxy.cc", |
487 "trees/proxy.h", | 487 "trees/proxy.h", |
| 488 "trees/proxy_common.cc", |
| 489 "trees/proxy_common.h", |
488 "trees/proxy_impl.h", | 490 "trees/proxy_impl.h", |
489 "trees/proxy_main.h", | 491 "trees/proxy_main.h", |
490 "trees/scoped_abort_remaining_swap_promises.h", | 492 "trees/scoped_abort_remaining_swap_promises.h", |
491 "trees/single_thread_proxy.cc", | 493 "trees/single_thread_proxy.cc", |
492 "trees/single_thread_proxy.h", | 494 "trees/single_thread_proxy.h", |
493 "trees/swap_promise_monitor.cc", | 495 "trees/swap_promise_monitor.cc", |
494 "trees/swap_promise_monitor.h", | 496 "trees/swap_promise_monitor.h", |
495 "trees/thread_proxy.cc", | 497 "trees/thread_proxy.cc", |
496 "trees/thread_proxy.h", | 498 "trees/thread_proxy.h", |
497 "trees/threaded_channel.cc", | 499 "trees/threaded_channel.cc", |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
919 "//ui/gl", | 921 "//ui/gl", |
920 "//ui/gl:test_support", | 922 "//ui/gl:test_support", |
921 ] | 923 ] |
922 | 924 |
923 if (is_android) { | 925 if (is_android) { |
924 isolate_file = "cc_perftests.isolate" | 926 isolate_file = "cc_perftests.isolate" |
925 } | 927 } |
926 } | 928 } |
927 # When adding support for isolates, please have a look at run-time dependencies | 929 # When adding support for isolates, please have a look at run-time dependencies |
928 # in the cc_unittests_run target in cc_tests.gyp. | 930 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |