| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("cc") { | 8 component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "animation/animation.cc", | 10 "animation/animation.cc", |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "layers/layer_impl.h", | 133 "layers/layer_impl.h", |
| 134 "layers/layer_impl_test_properties.cc", | 134 "layers/layer_impl_test_properties.cc", |
| 135 "layers/layer_impl_test_properties.h", | 135 "layers/layer_impl_test_properties.h", |
| 136 "layers/layer_iterator.h", | 136 "layers/layer_iterator.h", |
| 137 "layers/layer_list_iterator.cc", | 137 "layers/layer_list_iterator.cc", |
| 138 "layers/layer_list_iterator.h", | 138 "layers/layer_list_iterator.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_sticky_position_constraint.cc", |
| 144 "layers/layer_sticky_position_constraint.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 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1036 "//ui/gfx/geometry", | 1038 "//ui/gfx/geometry", |
| 1037 "//ui/gl", | 1039 "//ui/gl", |
| 1038 "//ui/gl:test_support", | 1040 "//ui/gl:test_support", |
| 1039 ] | 1041 ] |
| 1040 | 1042 |
| 1041 # This target should not require the Chrome executable to run. | 1043 # This target should not require the Chrome executable to run. |
| 1042 assert_no_deps = [ "//chrome" ] | 1044 assert_no_deps = [ "//chrome" ] |
| 1043 } | 1045 } |
| 1044 # When adding support for isolates, please have a look at run-time dependencies | 1046 # When adding support for isolates, please have a look at run-time dependencies |
| 1045 # in the cc_unittests_run target in cc_tests.gyp. | 1047 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |