Chromium Code Reviews| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 112 "layers/heads_up_display_layer.cc", | 112 "layers/heads_up_display_layer.cc", |
| 113 "layers/heads_up_display_layer.h", | 113 "layers/heads_up_display_layer.h", |
| 114 "layers/heads_up_display_layer_impl.cc", | 114 "layers/heads_up_display_layer_impl.cc", |
| 115 "layers/heads_up_display_layer_impl.h", | 115 "layers/heads_up_display_layer_impl.h", |
| 116 "layers/layer.cc", | 116 "layers/layer.cc", |
| 117 "layers/layer.h", | 117 "layers/layer.h", |
| 118 "layers/layer_client.h", | 118 "layers/layer_client.h", |
| 119 "layers/layer_collections.h", | 119 "layers/layer_collections.h", |
| 120 "layers/layer_impl.cc", | 120 "layers/layer_impl.cc", |
| 121 "layers/layer_impl.h", | 121 "layers/layer_impl.h", |
| 122 "layers/layer_impl_test_properties.cc", | |
| 123 "layers/layer_impl_test_properties.h", | |
|
ajuma
2016/04/27 21:57:21
This also needs to go in cc.gyp (there are still p
jaydasika
2016/04/28 01:50:01
Done.
| |
| 122 "layers/layer_iterator.h", | 124 "layers/layer_iterator.h", |
| 123 "layers/layer_list_iterator.cc", | 125 "layers/layer_list_iterator.cc", |
| 124 "layers/layer_list_iterator.h", | 126 "layers/layer_list_iterator.h", |
| 125 "layers/layer_position_constraint.cc", | 127 "layers/layer_position_constraint.cc", |
| 126 "layers/layer_position_constraint.h", | 128 "layers/layer_position_constraint.h", |
| 127 "layers/layer_proto_converter.cc", | 129 "layers/layer_proto_converter.cc", |
| 128 "layers/layer_proto_converter.h", | 130 "layers/layer_proto_converter.h", |
| 129 "layers/layer_utils.cc", | 131 "layers/layer_utils.cc", |
| 130 "layers/layer_utils.h", | 132 "layers/layer_utils.h", |
| 131 "layers/nine_patch_layer.cc", | 133 "layers/nine_patch_layer.cc", |
| (...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 994 "//ui/gl", | 996 "//ui/gl", |
| 995 "//ui/gl:test_support", | 997 "//ui/gl:test_support", |
| 996 ] | 998 ] |
| 997 | 999 |
| 998 if (is_android) { | 1000 if (is_android) { |
| 999 isolate_file = "cc_perftests.isolate" | 1001 isolate_file = "cc_perftests.isolate" |
| 1000 } | 1002 } |
| 1001 } | 1003 } |
| 1002 # When adding support for isolates, please have a look at run-time dependencies | 1004 # When adding support for isolates, please have a look at run-time dependencies |
| 1003 # in the cc_unittests_run target in cc_tests.gyp. | 1005 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |