| 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 "trees/occlusion_tracker.h", | 484 "trees/occlusion_tracker.h", |
| 485 "trees/property_tree.cc", | 485 "trees/property_tree.cc", |
| 486 "trees/property_tree.h", | 486 "trees/property_tree.h", |
| 487 "trees/property_tree_builder.cc", | 487 "trees/property_tree_builder.cc", |
| 488 "trees/property_tree_builder.h", | 488 "trees/property_tree_builder.h", |
| 489 "trees/proxy.h", | 489 "trees/proxy.h", |
| 490 "trees/proxy_common.cc", | 490 "trees/proxy_common.cc", |
| 491 "trees/proxy_common.h", | 491 "trees/proxy_common.h", |
| 492 "trees/proxy_impl.h", | 492 "trees/proxy_impl.h", |
| 493 "trees/proxy_main.h", | 493 "trees/proxy_main.h", |
| 494 "trees/remote_proto_channel.h", |
| 494 "trees/scoped_abort_remaining_swap_promises.h", | 495 "trees/scoped_abort_remaining_swap_promises.h", |
| 495 "trees/single_thread_proxy.cc", | 496 "trees/single_thread_proxy.cc", |
| 496 "trees/single_thread_proxy.h", | 497 "trees/single_thread_proxy.h", |
| 497 "trees/swap_promise_monitor.cc", | 498 "trees/swap_promise_monitor.cc", |
| 498 "trees/swap_promise_monitor.h", | 499 "trees/swap_promise_monitor.h", |
| 499 "trees/task_runner_provider.cc", | 500 "trees/task_runner_provider.cc", |
| 500 "trees/task_runner_provider.h", | 501 "trees/task_runner_provider.h", |
| 501 "trees/thread_proxy.cc", | 502 "trees/thread_proxy.cc", |
| 502 "trees/thread_proxy.h", | 503 "trees/thread_proxy.h", |
| 503 "trees/threaded_channel.cc", | 504 "trees/threaded_channel.cc", |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 "//ui/gl", | 936 "//ui/gl", |
| 936 "//ui/gl:test_support", | 937 "//ui/gl:test_support", |
| 937 ] | 938 ] |
| 938 | 939 |
| 939 if (is_android) { | 940 if (is_android) { |
| 940 isolate_file = "cc_perftests.isolate" | 941 isolate_file = "cc_perftests.isolate" |
| 941 } | 942 } |
| 942 } | 943 } |
| 943 # When adding support for isolates, please have a look at run-time dependencies | 944 # When adding support for isolates, please have a look at run-time dependencies |
| 944 # in the cc_unittests_run target in cc_tests.gyp. | 945 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |