| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "debug/layer_tree_debug_state.cc", | 68 "debug/layer_tree_debug_state.cc", |
| 69 "debug/layer_tree_debug_state.h", | 69 "debug/layer_tree_debug_state.h", |
| 70 "debug/micro_benchmark.cc", | 70 "debug/micro_benchmark.cc", |
| 71 "debug/micro_benchmark.h", | 71 "debug/micro_benchmark.h", |
| 72 "debug/micro_benchmark_controller.cc", | 72 "debug/micro_benchmark_controller.cc", |
| 73 "debug/micro_benchmark_controller.h", | 73 "debug/micro_benchmark_controller.h", |
| 74 "debug/micro_benchmark_controller_impl.cc", | 74 "debug/micro_benchmark_controller_impl.cc", |
| 75 "debug/micro_benchmark_controller_impl.h", | 75 "debug/micro_benchmark_controller_impl.h", |
| 76 "debug/micro_benchmark_impl.cc", | 76 "debug/micro_benchmark_impl.cc", |
| 77 "debug/micro_benchmark_impl.h", | 77 "debug/micro_benchmark_impl.h", |
| 78 "debug/paint_time_counter.cc", | |
| 79 "debug/paint_time_counter.h", | |
| 80 "debug/picture_debug_util.cc", | 78 "debug/picture_debug_util.cc", |
| 81 "debug/picture_debug_util.h", | 79 "debug/picture_debug_util.h", |
| 82 "debug/picture_record_benchmark.cc", | 80 "debug/picture_record_benchmark.cc", |
| 83 "debug/picture_record_benchmark.h", | 81 "debug/picture_record_benchmark.h", |
| 84 "debug/rasterize_and_record_benchmark.cc", | 82 "debug/rasterize_and_record_benchmark.cc", |
| 85 "debug/rasterize_and_record_benchmark.h", | 83 "debug/rasterize_and_record_benchmark.h", |
| 86 "debug/rasterize_and_record_benchmark_impl.cc", | 84 "debug/rasterize_and_record_benchmark_impl.cc", |
| 87 "debug/rasterize_and_record_benchmark_impl.h", | 85 "debug/rasterize_and_record_benchmark_impl.h", |
| 88 "debug/rendering_stats.cc", | 86 "debug/rendering_stats.cc", |
| 89 "debug/rendering_stats.h", | 87 "debug/rendering_stats.h", |
| (...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 "//ui/gl", | 925 "//ui/gl", |
| 928 "//ui/gl:test_support", | 926 "//ui/gl:test_support", |
| 929 ] | 927 ] |
| 930 | 928 |
| 931 if (is_android) { | 929 if (is_android) { |
| 932 isolate_file = "cc_perftests.isolate" | 930 isolate_file = "cc_perftests.isolate" |
| 933 } | 931 } |
| 934 } | 932 } |
| 935 # 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 |
| 936 # in the cc_unittests_run target in cc_tests.gyp. | 934 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |