| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 "output/managed_memory_policy.cc", | 239 "output/managed_memory_policy.cc", |
| 240 "output/managed_memory_policy.h", | 240 "output/managed_memory_policy.h", |
| 241 "output/output_surface.cc", | 241 "output/output_surface.cc", |
| 242 "output/output_surface.h", | 242 "output/output_surface.h", |
| 243 "output/output_surface_client.h", | 243 "output/output_surface_client.h", |
| 244 "output/overlay_candidate.cc", | 244 "output/overlay_candidate.cc", |
| 245 "output/overlay_candidate.h", | 245 "output/overlay_candidate.h", |
| 246 "output/overlay_candidate_validator.h", | 246 "output/overlay_candidate_validator.h", |
| 247 "output/overlay_processor.cc", | 247 "output/overlay_processor.cc", |
| 248 "output/overlay_processor.h", | 248 "output/overlay_processor.h", |
| 249 "output/overlay_strategy_common.cc", |
| 250 "output/overlay_strategy_common.h", |
| 249 "output/overlay_strategy_single_on_top.cc", | 251 "output/overlay_strategy_single_on_top.cc", |
| 250 "output/overlay_strategy_single_on_top.h", | 252 "output/overlay_strategy_single_on_top.h", |
| 253 "output/overlay_strategy_underlay.cc", |
| 254 "output/overlay_strategy_underlay.h", |
| 251 "output/program_binding.cc", | 255 "output/program_binding.cc", |
| 252 "output/program_binding.h", | 256 "output/program_binding.h", |
| 253 "output/render_surface_filters.cc", | 257 "output/render_surface_filters.cc", |
| 254 "output/render_surface_filters.h", | 258 "output/render_surface_filters.h", |
| 255 "output/renderer.cc", | 259 "output/renderer.cc", |
| 256 "output/renderer.h", | 260 "output/renderer.h", |
| 257 "output/renderer_capabilities.cc", | 261 "output/renderer_capabilities.cc", |
| 258 "output/renderer_capabilities.h", | 262 "output/renderer_capabilities.h", |
| 259 "output/renderer_settings.cc", | 263 "output/renderer_settings.cc", |
| 260 "output/renderer_settings.h", | 264 "output/renderer_settings.h", |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 "//testing/gmock", | 904 "//testing/gmock", |
| 901 "//testing/gtest", | 905 "//testing/gtest", |
| 902 "//testing/perf", | 906 "//testing/perf", |
| 903 "//ui/gfx", | 907 "//ui/gfx", |
| 904 "//ui/gfx/geometry", | 908 "//ui/gfx/geometry", |
| 905 "//ui/gl", | 909 "//ui/gl", |
| 906 ] | 910 ] |
| 907 } | 911 } |
| 908 # When adding support for isolates, please have a look at run-time dependencies | 912 # When adding support for isolates, please have a look at run-time dependencies |
| 909 # in the cc_unittests_run target in cc_tests.gyp. | 913 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |