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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 "output/overlay_processor.cc", | 278 "output/overlay_processor.cc", |
279 "output/overlay_processor.h", | 279 "output/overlay_processor.h", |
280 "output/overlay_strategy_single_on_top.cc", | 280 "output/overlay_strategy_single_on_top.cc", |
281 "output/overlay_strategy_single_on_top.h", | 281 "output/overlay_strategy_single_on_top.h", |
282 "output/program_binding.cc", | 282 "output/program_binding.cc", |
283 "output/program_binding.h", | 283 "output/program_binding.h", |
284 "output/render_surface_filters.cc", | 284 "output/render_surface_filters.cc", |
285 "output/render_surface_filters.h", | 285 "output/render_surface_filters.h", |
286 "output/renderer.cc", | 286 "output/renderer.cc", |
287 "output/renderer.h", | 287 "output/renderer.h", |
| 288 "output/renderer_capabilities.cc", |
| 289 "output/renderer_capabilities.h", |
288 "output/renderer_settings.cc", | 290 "output/renderer_settings.cc", |
289 "output/renderer_settings.h", | 291 "output/renderer_settings.h", |
290 "output/shader.cc", | 292 "output/shader.cc", |
291 "output/shader.h", | 293 "output/shader.h", |
292 "output/software_frame_data.cc", | 294 "output/software_frame_data.cc", |
293 "output/software_frame_data.h", | 295 "output/software_frame_data.h", |
294 "output/software_output_device.cc", | 296 "output/software_output_device.cc", |
295 "output/software_output_device.h", | 297 "output/software_output_device.h", |
296 "output/software_renderer.cc", | 298 "output/software_renderer.cc", |
297 "output/software_renderer.h", | 299 "output/software_renderer.h", |
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
923 "//testing/gmock", | 925 "//testing/gmock", |
924 "//testing/gtest", | 926 "//testing/gtest", |
925 "//testing/perf", | 927 "//testing/perf", |
926 "//ui/gfx", | 928 "//ui/gfx", |
927 "//ui/gfx/geometry", | 929 "//ui/gfx/geometry", |
928 "//ui/gl", | 930 "//ui/gl", |
929 ] | 931 ] |
930 } | 932 } |
931 # When adding support for isolates, please have a look at run-time dependencies | 933 # When adding support for isolates, please have a look at run-time dependencies |
932 # in the cc_unittests_run target in cc_tests.gyp. | 934 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |