| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 250 "output/overlay_strategy_all_or_nothing.cc", |
| 251 "output/overlay_strategy_all_or_nothing.h", | 251 "output/overlay_strategy_all_or_nothing.h", |
| 252 "output/overlay_strategy_common.cc", | |
| 253 "output/overlay_strategy_common.h", | |
| 254 "output/overlay_strategy_sandwich.cc", | 252 "output/overlay_strategy_sandwich.cc", |
| 255 "output/overlay_strategy_sandwich.h", | 253 "output/overlay_strategy_sandwich.h", |
| 256 "output/overlay_strategy_single_on_top.cc", | 254 "output/overlay_strategy_single_on_top.cc", |
| 257 "output/overlay_strategy_single_on_top.h", | 255 "output/overlay_strategy_single_on_top.h", |
| 258 "output/overlay_strategy_underlay.cc", | 256 "output/overlay_strategy_underlay.cc", |
| 259 "output/overlay_strategy_underlay.h", | 257 "output/overlay_strategy_underlay.h", |
| 260 "output/program_binding.cc", | 258 "output/program_binding.cc", |
| 261 "output/program_binding.h", | 259 "output/program_binding.h", |
| 262 "output/render_surface_filters.cc", | 260 "output/render_surface_filters.cc", |
| 263 "output/render_surface_filters.h", | 261 "output/render_surface_filters.h", |
| (...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 923 "//ui/gl", | 921 "//ui/gl", |
| 924 "//ui/gl:test_support", | 922 "//ui/gl:test_support", |
| 925 ] | 923 ] |
| 926 | 924 |
| 927 if (is_android) { | 925 if (is_android) { |
| 928 isolate_file = "cc_perftests.isolate" | 926 isolate_file = "cc_perftests.isolate" |
| 929 } | 927 } |
| 930 } | 928 } |
| 931 # When adding support for isolates, please have a look at run-time dependencies | 929 # When adding support for isolates, please have a look at run-time dependencies |
| 932 # in the cc_unittests_run target in cc_tests.gyp. | 930 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |