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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 "output/managed_memory_policy.cc", | 270 "output/managed_memory_policy.cc", |
271 "output/managed_memory_policy.h", | 271 "output/managed_memory_policy.h", |
272 "output/output_surface.cc", | 272 "output/output_surface.cc", |
273 "output/output_surface.h", | 273 "output/output_surface.h", |
274 "output/output_surface_client.h", | 274 "output/output_surface_client.h", |
275 "output/overlay_candidate.cc", | 275 "output/overlay_candidate.cc", |
276 "output/overlay_candidate.h", | 276 "output/overlay_candidate.h", |
277 "output/overlay_candidate_validator.h", | 277 "output/overlay_candidate_validator.h", |
278 "output/overlay_processor.cc", | 278 "output/overlay_processor.cc", |
279 "output/overlay_processor.h", | 279 "output/overlay_processor.h", |
| 280 "output/overlay_strategy_common.cc", |
| 281 "output/overlay_strategy_common.h", |
280 "output/overlay_strategy_single_on_top.cc", | 282 "output/overlay_strategy_single_on_top.cc", |
281 "output/overlay_strategy_single_on_top.h", | 283 "output/overlay_strategy_single_on_top.h", |
| 284 "output/overlay_strategy_underlay.cc", |
| 285 "output/overlay_strategy_underlay.h", |
282 "output/program_binding.cc", | 286 "output/program_binding.cc", |
283 "output/program_binding.h", | 287 "output/program_binding.h", |
284 "output/render_surface_filters.cc", | 288 "output/render_surface_filters.cc", |
285 "output/render_surface_filters.h", | 289 "output/render_surface_filters.h", |
286 "output/renderer.cc", | 290 "output/renderer.cc", |
287 "output/renderer.h", | 291 "output/renderer.h", |
288 "output/renderer_settings.cc", | 292 "output/renderer_settings.cc", |
289 "output/renderer_settings.h", | 293 "output/renderer_settings.h", |
290 "output/shader.cc", | 294 "output/shader.cc", |
291 "output/shader.h", | 295 "output/shader.h", |
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 "//testing/gmock", | 927 "//testing/gmock", |
924 "//testing/gtest", | 928 "//testing/gtest", |
925 "//testing/perf", | 929 "//testing/perf", |
926 "//ui/gfx", | 930 "//ui/gfx", |
927 "//ui/gfx/geometry", | 931 "//ui/gfx/geometry", |
928 "//ui/gl", | 932 "//ui/gl", |
929 ] | 933 ] |
930 } | 934 } |
931 # When adding support for isolates, please have a look at run-time dependencies | 935 # When adding support for isolates, please have a look at run-time dependencies |
932 # in the cc_unittests_run target in cc_tests.gyp. | 936 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |