| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "layers/painted_scrollbar_layer_impl.h", | 157 "layers/painted_scrollbar_layer_impl.h", |
| 158 "layers/picture_image_layer.cc", | 158 "layers/picture_image_layer.cc", |
| 159 "layers/picture_image_layer.h", | 159 "layers/picture_image_layer.h", |
| 160 "layers/picture_image_layer_impl.cc", | 160 "layers/picture_image_layer_impl.cc", |
| 161 "layers/picture_image_layer_impl.h", | 161 "layers/picture_image_layer_impl.h", |
| 162 "layers/picture_layer.cc", | 162 "layers/picture_layer.cc", |
| 163 "layers/picture_layer.h", | 163 "layers/picture_layer.h", |
| 164 "layers/picture_layer_impl.cc", | 164 "layers/picture_layer_impl.cc", |
| 165 "layers/picture_layer_impl.h", | 165 "layers/picture_layer_impl.h", |
| 166 "layers/render_pass_sink.h", | 166 "layers/render_pass_sink.h", |
| 167 "layers/render_surface_draw_properties.cc", |
| 168 "layers/render_surface_draw_properties.h", |
| 167 "layers/render_surface_impl.cc", | 169 "layers/render_surface_impl.cc", |
| 168 "layers/render_surface_impl.h", | 170 "layers/render_surface_impl.h", |
| 169 "layers/scrollbar_layer_impl_base.cc", | 171 "layers/scrollbar_layer_impl_base.cc", |
| 170 "layers/scrollbar_layer_impl_base.h", | 172 "layers/scrollbar_layer_impl_base.h", |
| 171 "layers/scrollbar_layer_interface.h", | 173 "layers/scrollbar_layer_interface.h", |
| 172 "layers/solid_color_layer.cc", | 174 "layers/solid_color_layer.cc", |
| 173 "layers/solid_color_layer.h", | 175 "layers/solid_color_layer.h", |
| 174 "layers/solid_color_layer_impl.cc", | 176 "layers/solid_color_layer_impl.cc", |
| 175 "layers/solid_color_layer_impl.h", | 177 "layers/solid_color_layer_impl.h", |
| 176 "layers/solid_color_scrollbar_layer.cc", | 178 "layers/solid_color_scrollbar_layer.cc", |
| (...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 "//ui/gl", | 929 "//ui/gl", |
| 928 "//ui/gl:test_support", | 930 "//ui/gl:test_support", |
| 929 ] | 931 ] |
| 930 | 932 |
| 931 if (is_android) { | 933 if (is_android) { |
| 932 isolate_file = "cc_perftests.isolate" | 934 isolate_file = "cc_perftests.isolate" |
| 933 } | 935 } |
| 934 } | 936 } |
| 935 # When adding support for isolates, please have a look at run-time dependencies | 937 # When adding support for isolates, please have a look at run-time dependencies |
| 936 # in the cc_unittests_run target in cc_tests.gyp. | 938 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |