| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "layers/heads_up_display_layer.h", | 123 "layers/heads_up_display_layer.h", |
| 124 "layers/heads_up_display_layer_impl.cc", | 124 "layers/heads_up_display_layer_impl.cc", |
| 125 "layers/heads_up_display_layer_impl.h", | 125 "layers/heads_up_display_layer_impl.h", |
| 126 "layers/io_surface_layer.cc", | 126 "layers/io_surface_layer.cc", |
| 127 "layers/io_surface_layer.h", | 127 "layers/io_surface_layer.h", |
| 128 "layers/io_surface_layer_impl.cc", | 128 "layers/io_surface_layer_impl.cc", |
| 129 "layers/io_surface_layer_impl.h", | 129 "layers/io_surface_layer_impl.h", |
| 130 "layers/layer.cc", | 130 "layers/layer.cc", |
| 131 "layers/layer.h", | 131 "layers/layer.h", |
| 132 "layers/layer_client.h", | 132 "layers/layer_client.h", |
| 133 "layers/layer_collections.h", |
| 133 "layers/layer_impl.cc", | 134 "layers/layer_impl.cc", |
| 134 "layers/layer_impl.h", | 135 "layers/layer_impl.h", |
| 135 "layers/layer_iterator.h", | 136 "layers/layer_iterator.h", |
| 136 "layers/layer_list_iterator.cc", | 137 "layers/layer_list_iterator.cc", |
| 137 "layers/layer_list_iterator.h", | 138 "layers/layer_list_iterator.h", |
| 138 "layers/layer_lists.h", | |
| 139 "layers/layer_position_constraint.cc", | 139 "layers/layer_position_constraint.cc", |
| 140 "layers/layer_position_constraint.h", | 140 "layers/layer_position_constraint.h", |
| 141 "layers/layer_proto_converter.cc", | 141 "layers/layer_proto_converter.cc", |
| 142 "layers/layer_proto_converter.h", | 142 "layers/layer_proto_converter.h", |
| 143 "layers/layer_utils.cc", | 143 "layers/layer_utils.cc", |
| 144 "layers/layer_utils.h", | 144 "layers/layer_utils.h", |
| 145 "layers/nine_patch_layer.cc", | 145 "layers/nine_patch_layer.cc", |
| 146 "layers/nine_patch_layer.h", | 146 "layers/nine_patch_layer.h", |
| 147 "layers/nine_patch_layer_impl.cc", | 147 "layers/nine_patch_layer_impl.cc", |
| 148 "layers/nine_patch_layer_impl.h", | 148 "layers/nine_patch_layer_impl.h", |
| (...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 992 "//ui/gl", | 992 "//ui/gl", |
| 993 "//ui/gl:test_support", | 993 "//ui/gl:test_support", |
| 994 ] | 994 ] |
| 995 | 995 |
| 996 if (is_android) { | 996 if (is_android) { |
| 997 isolate_file = "cc_perftests.isolate" | 997 isolate_file = "cc_perftests.isolate" |
| 998 } | 998 } |
| 999 } | 999 } |
| 1000 # When adding support for isolates, please have a look at run-time dependencies | 1000 # When adding support for isolates, please have a look at run-time dependencies |
| 1001 # in the cc_unittests_run target in cc_tests.gyp. | 1001 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |