| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "layers/video_layer_impl.cc", | 196 "layers/video_layer_impl.cc", |
| 197 "layers/video_layer_impl.h", | 197 "layers/video_layer_impl.h", |
| 198 "layers/viewport.cc", | 198 "layers/viewport.cc", |
| 199 "layers/viewport.h", | 199 "layers/viewport.h", |
| 200 "output/begin_frame_args.cc", | 200 "output/begin_frame_args.cc", |
| 201 "output/begin_frame_args.h", | 201 "output/begin_frame_args.h", |
| 202 "output/bsp_tree.cc", | 202 "output/bsp_tree.cc", |
| 203 "output/bsp_tree.h", | 203 "output/bsp_tree.h", |
| 204 "output/bsp_walk_action.cc", | 204 "output/bsp_walk_action.cc", |
| 205 "output/bsp_walk_action.h", | 205 "output/bsp_walk_action.h", |
| 206 "output/ca_layer_overlay.cc", |
| 207 "output/ca_layer_overlay.h", |
| 206 "output/compositor_frame.cc", | 208 "output/compositor_frame.cc", |
| 207 "output/compositor_frame.h", | 209 "output/compositor_frame.h", |
| 208 "output/compositor_frame_ack.cc", | 210 "output/compositor_frame_ack.cc", |
| 209 "output/compositor_frame_ack.h", | 211 "output/compositor_frame_ack.h", |
| 210 "output/compositor_frame_metadata.cc", | 212 "output/compositor_frame_metadata.cc", |
| 211 "output/compositor_frame_metadata.h", | 213 "output/compositor_frame_metadata.h", |
| 212 "output/context_provider.cc", | 214 "output/context_provider.cc", |
| 213 "output/context_provider.h", | 215 "output/context_provider.h", |
| 214 "output/copy_output_request.cc", | 216 "output/copy_output_request.cc", |
| 215 "output/copy_output_request.h", | 217 "output/copy_output_request.h", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 242 "output/managed_memory_policy.cc", | 244 "output/managed_memory_policy.cc", |
| 243 "output/managed_memory_policy.h", | 245 "output/managed_memory_policy.h", |
| 244 "output/output_surface.cc", | 246 "output/output_surface.cc", |
| 245 "output/output_surface.h", | 247 "output/output_surface.h", |
| 246 "output/output_surface_client.h", | 248 "output/output_surface_client.h", |
| 247 "output/overlay_candidate.cc", | 249 "output/overlay_candidate.cc", |
| 248 "output/overlay_candidate.h", | 250 "output/overlay_candidate.h", |
| 249 "output/overlay_candidate_validator.h", | 251 "output/overlay_candidate_validator.h", |
| 250 "output/overlay_processor.cc", | 252 "output/overlay_processor.cc", |
| 251 "output/overlay_processor.h", | 253 "output/overlay_processor.h", |
| 252 "output/overlay_strategy_all_or_nothing.cc", | |
| 253 "output/overlay_strategy_all_or_nothing.h", | |
| 254 "output/overlay_strategy_sandwich.cc", | 254 "output/overlay_strategy_sandwich.cc", |
| 255 "output/overlay_strategy_sandwich.h", | 255 "output/overlay_strategy_sandwich.h", |
| 256 "output/overlay_strategy_single_on_top.cc", | 256 "output/overlay_strategy_single_on_top.cc", |
| 257 "output/overlay_strategy_single_on_top.h", | 257 "output/overlay_strategy_single_on_top.h", |
| 258 "output/overlay_strategy_underlay.cc", | 258 "output/overlay_strategy_underlay.cc", |
| 259 "output/overlay_strategy_underlay.h", | 259 "output/overlay_strategy_underlay.h", |
| 260 "output/program_binding.cc", | 260 "output/program_binding.cc", |
| 261 "output/program_binding.h", | 261 "output/program_binding.h", |
| 262 "output/render_surface_filters.cc", | 262 "output/render_surface_filters.cc", |
| 263 "output/render_surface_filters.h", | 263 "output/render_surface_filters.h", |
| (...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 "//ui/gl", | 935 "//ui/gl", |
| 936 "//ui/gl:test_support", | 936 "//ui/gl:test_support", |
| 937 ] | 937 ] |
| 938 | 938 |
| 939 if (is_android) { | 939 if (is_android) { |
| 940 isolate_file = "cc_perftests.isolate" | 940 isolate_file = "cc_perftests.isolate" |
| 941 } | 941 } |
| 942 } | 942 } |
| 943 # When adding support for isolates, please have a look at run-time dependencies | 943 # When adding support for isolates, please have a look at run-time dependencies |
| 944 # in the cc_unittests_run target in cc_tests.gyp. | 944 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |