| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 "output/managed_memory_policy.cc", | 240 "output/managed_memory_policy.cc", |
| 241 "output/managed_memory_policy.h", | 241 "output/managed_memory_policy.h", |
| 242 "output/output_surface.cc", | 242 "output/output_surface.cc", |
| 243 "output/output_surface.h", | 243 "output/output_surface.h", |
| 244 "output/output_surface_client.h", | 244 "output/output_surface_client.h", |
| 245 "output/overlay_candidate.cc", | 245 "output/overlay_candidate.cc", |
| 246 "output/overlay_candidate.h", | 246 "output/overlay_candidate.h", |
| 247 "output/overlay_candidate_validator.h", | 247 "output/overlay_candidate_validator.h", |
| 248 "output/overlay_processor.cc", | 248 "output/overlay_processor.cc", |
| 249 "output/overlay_processor.h", | 249 "output/overlay_processor.h", |
| 250 "output/overlay_strategy_all_or_nothing.cc", |
| 251 "output/overlay_strategy_all_or_nothing.h", |
| 250 "output/overlay_strategy_common.cc", | 252 "output/overlay_strategy_common.cc", |
| 251 "output/overlay_strategy_common.h", | 253 "output/overlay_strategy_common.h", |
| 252 "output/overlay_strategy_sandwich.cc", | 254 "output/overlay_strategy_sandwich.cc", |
| 253 "output/overlay_strategy_sandwich.h", | 255 "output/overlay_strategy_sandwich.h", |
| 254 "output/overlay_strategy_single_on_top.cc", | 256 "output/overlay_strategy_single_on_top.cc", |
| 255 "output/overlay_strategy_single_on_top.h", | 257 "output/overlay_strategy_single_on_top.h", |
| 256 "output/overlay_strategy_underlay.cc", | 258 "output/overlay_strategy_underlay.cc", |
| 257 "output/overlay_strategy_underlay.h", | 259 "output/overlay_strategy_underlay.h", |
| 258 "output/program_binding.cc", | 260 "output/program_binding.cc", |
| 259 "output/program_binding.h", | 261 "output/program_binding.h", |
| (...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 921 "//ui/gl", | 923 "//ui/gl", |
| 922 "//ui/gl:test_support", | 924 "//ui/gl:test_support", |
| 923 ] | 925 ] |
| 924 | 926 |
| 925 if (is_android) { | 927 if (is_android) { |
| 926 isolate_file = "cc_perftests.isolate" | 928 isolate_file = "cc_perftests.isolate" |
| 927 } | 929 } |
| 928 } | 930 } |
| 929 # When adding support for isolates, please have a look at run-time dependencies | 931 # When adding support for isolates, please have a look at run-time dependencies |
| 930 # in the cc_unittests_run target in cc_tests.gyp. | 932 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |