| 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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 "test/fake_external_begin_frame_source.h", | 571 "test/fake_external_begin_frame_source.h", |
| 572 "test/fake_impl_task_runner_provider.h", | 572 "test/fake_impl_task_runner_provider.h", |
| 573 "test/fake_layer_tree_host.cc", | 573 "test/fake_layer_tree_host.cc", |
| 574 "test/fake_layer_tree_host.h", | 574 "test/fake_layer_tree_host.h", |
| 575 "test/fake_layer_tree_host_client.cc", | 575 "test/fake_layer_tree_host_client.cc", |
| 576 "test/fake_layer_tree_host_client.h", | 576 "test/fake_layer_tree_host_client.h", |
| 577 "test/fake_layer_tree_host_impl.cc", | 577 "test/fake_layer_tree_host_impl.cc", |
| 578 "test/fake_layer_tree_host_impl.h", | 578 "test/fake_layer_tree_host_impl.h", |
| 579 "test/fake_layer_tree_host_impl_client.cc", | 579 "test/fake_layer_tree_host_impl_client.cc", |
| 580 "test/fake_layer_tree_host_impl_client.h", | 580 "test/fake_layer_tree_host_impl_client.h", |
| 581 "test/fake_mask_layer_impl.cc", |
| 582 "test/fake_mask_layer_impl.h", |
| 581 "test/fake_output_surface.cc", | 583 "test/fake_output_surface.cc", |
| 582 "test/fake_output_surface.h", | 584 "test/fake_output_surface.h", |
| 583 "test/fake_output_surface_client.cc", | 585 "test/fake_output_surface_client.cc", |
| 584 "test/fake_output_surface_client.h", | 586 "test/fake_output_surface_client.h", |
| 585 "test/fake_painted_scrollbar_layer.cc", | 587 "test/fake_painted_scrollbar_layer.cc", |
| 586 "test/fake_painted_scrollbar_layer.h", | 588 "test/fake_painted_scrollbar_layer.h", |
| 587 "test/fake_picture_layer.cc", | 589 "test/fake_picture_layer.cc", |
| 588 "test/fake_picture_layer.h", | 590 "test/fake_picture_layer.h", |
| 589 "test/fake_picture_layer_impl.cc", | 591 "test/fake_picture_layer_impl.cc", |
| 590 "test/fake_picture_layer_impl.h", | 592 "test/fake_picture_layer_impl.h", |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 "//ui/gl", | 943 "//ui/gl", |
| 942 "//ui/gl:test_support", | 944 "//ui/gl:test_support", |
| 943 ] | 945 ] |
| 944 | 946 |
| 945 if (is_android) { | 947 if (is_android) { |
| 946 isolate_file = "cc_perftests.isolate" | 948 isolate_file = "cc_perftests.isolate" |
| 947 } | 949 } |
| 948 } | 950 } |
| 949 # When adding support for isolates, please have a look at run-time dependencies | 951 # When adding support for isolates, please have a look at run-time dependencies |
| 950 # in the cc_unittests_run target in cc_tests.gyp. | 952 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |