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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 "output/output_surface.cc", | 245 "output/output_surface.cc", |
246 "output/output_surface.h", | 246 "output/output_surface.h", |
247 "output/output_surface_client.h", | 247 "output/output_surface_client.h", |
248 "output/overlay_candidate.cc", | 248 "output/overlay_candidate.cc", |
249 "output/overlay_candidate.h", | 249 "output/overlay_candidate.h", |
250 "output/overlay_candidate_validator.h", | 250 "output/overlay_candidate_validator.h", |
251 "output/overlay_processor.cc", | 251 "output/overlay_processor.cc", |
252 "output/overlay_processor.h", | 252 "output/overlay_processor.h", |
253 "output/overlay_strategy_common.cc", | 253 "output/overlay_strategy_common.cc", |
254 "output/overlay_strategy_common.h", | 254 "output/overlay_strategy_common.h", |
| 255 "output/overlay_strategy_sandwich.cc", |
| 256 "output/overlay_strategy_sandwich.h", |
255 "output/overlay_strategy_single_on_top.cc", | 257 "output/overlay_strategy_single_on_top.cc", |
256 "output/overlay_strategy_single_on_top.h", | 258 "output/overlay_strategy_single_on_top.h", |
257 "output/overlay_strategy_underlay.cc", | 259 "output/overlay_strategy_underlay.cc", |
258 "output/overlay_strategy_underlay.h", | 260 "output/overlay_strategy_underlay.h", |
259 "output/program_binding.cc", | 261 "output/program_binding.cc", |
260 "output/program_binding.h", | 262 "output/program_binding.h", |
261 "output/render_surface_filters.cc", | 263 "output/render_surface_filters.cc", |
262 "output/render_surface_filters.h", | 264 "output/render_surface_filters.h", |
263 "output/renderer.cc", | 265 "output/renderer.cc", |
264 "output/renderer.h", | 266 "output/renderer.h", |
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
926 "//ui/gl", | 928 "//ui/gl", |
927 "//ui/gl:test_support", | 929 "//ui/gl:test_support", |
928 ] | 930 ] |
929 | 931 |
930 if (is_android) { | 932 if (is_android) { |
931 isolate_file = "cc_perftests.isolate" | 933 isolate_file = "cc_perftests.isolate" |
932 } | 934 } |
933 } | 935 } |
934 # When adding support for isolates, please have a look at run-time dependencies | 936 # When adding support for isolates, please have a look at run-time dependencies |
935 # in the cc_unittests_run target in cc_tests.gyp. | 937 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |