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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 "output/bsp_walk_action.cc", | 196 "output/bsp_walk_action.cc", |
197 "output/bsp_walk_action.h", | 197 "output/bsp_walk_action.h", |
198 "output/ca_layer_overlay.cc", | 198 "output/ca_layer_overlay.cc", |
199 "output/ca_layer_overlay.h", | 199 "output/ca_layer_overlay.h", |
200 "output/compositor_frame.cc", | 200 "output/compositor_frame.cc", |
201 "output/compositor_frame.h", | 201 "output/compositor_frame.h", |
202 "output/compositor_frame_ack.cc", | 202 "output/compositor_frame_ack.cc", |
203 "output/compositor_frame_ack.h", | 203 "output/compositor_frame_ack.h", |
204 "output/compositor_frame_metadata.cc", | 204 "output/compositor_frame_metadata.cc", |
205 "output/compositor_frame_metadata.h", | 205 "output/compositor_frame_metadata.h", |
206 "output/context_provider.cc", | |
207 "output/context_provider.h", | 206 "output/context_provider.h", |
208 "output/copy_output_request.cc", | 207 "output/copy_output_request.cc", |
209 "output/copy_output_request.h", | 208 "output/copy_output_request.h", |
210 "output/copy_output_result.cc", | 209 "output/copy_output_result.cc", |
211 "output/copy_output_result.h", | 210 "output/copy_output_result.h", |
212 "output/delegated_frame_data.cc", | 211 "output/delegated_frame_data.cc", |
213 "output/delegated_frame_data.h", | 212 "output/delegated_frame_data.h", |
214 "output/delegating_renderer.cc", | 213 "output/delegating_renderer.cc", |
215 "output/delegating_renderer.h", | 214 "output/delegating_renderer.h", |
216 "output/direct_renderer.cc", | 215 "output/direct_renderer.cc", |
(...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1001 "//ui/gl", | 1000 "//ui/gl", |
1002 "//ui/gl:test_support", | 1001 "//ui/gl:test_support", |
1003 ] | 1002 ] |
1004 | 1003 |
1005 if (is_android) { | 1004 if (is_android) { |
1006 isolate_file = "cc_perftests.isolate" | 1005 isolate_file = "cc_perftests.isolate" |
1007 } | 1006 } |
1008 } | 1007 } |
1009 # When adding support for isolates, please have a look at run-time dependencies | 1008 # When adding support for isolates, please have a look at run-time dependencies |
1010 # in the cc_unittests_run target in cc_tests.gyp. | 1009 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |