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