| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "layers/layer.h", | 133 "layers/layer.h", |
| 134 "layers/layer_client.h", | 134 "layers/layer_client.h", |
| 135 "layers/layer_impl.cc", | 135 "layers/layer_impl.cc", |
| 136 "layers/layer_impl.h", | 136 "layers/layer_impl.h", |
| 137 "layers/layer_iterator.h", | 137 "layers/layer_iterator.h", |
| 138 "layers/layer_lists.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_settings.cc", |
| 144 "layers/layer_settings.h", |
| 143 "layers/layer_utils.cc", | 145 "layers/layer_utils.cc", |
| 144 "layers/layer_utils.h", | 146 "layers/layer_utils.h", |
| 145 "layers/nine_patch_layer.cc", | 147 "layers/nine_patch_layer.cc", |
| 146 "layers/nine_patch_layer.h", | 148 "layers/nine_patch_layer.h", |
| 147 "layers/nine_patch_layer_impl.cc", | 149 "layers/nine_patch_layer_impl.cc", |
| 148 "layers/nine_patch_layer_impl.h", | 150 "layers/nine_patch_layer_impl.h", |
| 149 "layers/paint_properties.h", | 151 "layers/paint_properties.h", |
| 150 "layers/painted_scrollbar_layer.cc", | 152 "layers/painted_scrollbar_layer.cc", |
| 151 "layers/painted_scrollbar_layer.h", | 153 "layers/painted_scrollbar_layer.h", |
| 152 "layers/painted_scrollbar_layer_impl.cc", | 154 "layers/painted_scrollbar_layer_impl.cc", |
| (...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 934 "//ui/gl", | 936 "//ui/gl", |
| 935 "//ui/gl:test_support", | 937 "//ui/gl:test_support", |
| 936 ] | 938 ] |
| 937 | 939 |
| 938 if (is_android) { | 940 if (is_android) { |
| 939 isolate_file = "cc_perftests.isolate" | 941 isolate_file = "cc_perftests.isolate" |
| 940 } | 942 } |
| 941 } | 943 } |
| 942 # 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 |
| 943 # in the cc_unittests_run target in cc_tests.gyp. | 945 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |