| 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 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 752 "layers/io_surface_layer_impl_unittest.cc", | 752 "layers/io_surface_layer_impl_unittest.cc", |
| 753 "layers/layer_impl_unittest.cc", | 753 "layers/layer_impl_unittest.cc", |
| 754 "layers/layer_iterator_unittest.cc", | 754 "layers/layer_iterator_unittest.cc", |
| 755 "layers/layer_position_constraint_unittest.cc", | 755 "layers/layer_position_constraint_unittest.cc", |
| 756 "layers/layer_proto_converter_unittest.cc", | 756 "layers/layer_proto_converter_unittest.cc", |
| 757 "layers/layer_unittest.cc", | 757 "layers/layer_unittest.cc", |
| 758 "layers/layer_utils_unittest.cc", | 758 "layers/layer_utils_unittest.cc", |
| 759 "layers/nine_patch_layer_impl_unittest.cc", | 759 "layers/nine_patch_layer_impl_unittest.cc", |
| 760 "layers/nine_patch_layer_unittest.cc", | 760 "layers/nine_patch_layer_unittest.cc", |
| 761 "layers/painted_scrollbar_layer_impl_unittest.cc", | 761 "layers/painted_scrollbar_layer_impl_unittest.cc", |
| 762 "layers/painted_scrollbar_layer_unittest.cc", |
| 762 "layers/picture_image_layer_impl_unittest.cc", | 763 "layers/picture_image_layer_impl_unittest.cc", |
| 763 "layers/picture_image_layer_unittest.cc", | 764 "layers/picture_image_layer_unittest.cc", |
| 764 "layers/picture_layer_impl_unittest.cc", | 765 "layers/picture_layer_impl_unittest.cc", |
| 765 "layers/picture_layer_unittest.cc", | 766 "layers/picture_layer_unittest.cc", |
| 766 "layers/render_surface_impl_unittest.cc", | 767 "layers/render_surface_impl_unittest.cc", |
| 767 "layers/render_surface_unittest.cc", | 768 "layers/render_surface_unittest.cc", |
| 768 "layers/scrollbar_layer_unittest.cc", | 769 "layers/scrollbar_layer_unittest.cc", |
| 769 "layers/solid_color_layer_impl_unittest.cc", | 770 "layers/solid_color_layer_impl_unittest.cc", |
| 770 "layers/solid_color_scrollbar_layer_impl_unittest.cc", | 771 "layers/solid_color_scrollbar_layer_impl_unittest.cc", |
| 771 "layers/surface_layer_impl_unittest.cc", | 772 "layers/surface_layer_impl_unittest.cc", |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 934 "//ui/gl", | 935 "//ui/gl", |
| 935 "//ui/gl:test_support", | 936 "//ui/gl:test_support", |
| 936 ] | 937 ] |
| 937 | 938 |
| 938 if (is_android) { | 939 if (is_android) { |
| 939 isolate_file = "cc_perftests.isolate" | 940 isolate_file = "cc_perftests.isolate" |
| 940 } | 941 } |
| 941 } | 942 } |
| 942 # When adding support for isolates, please have a look at run-time dependencies | 943 # When adding support for isolates, please have a look at run-time dependencies |
| 943 # in the cc_unittests_run target in cc_tests.gyp. | 944 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |