| 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("//cc/cc.gni") | 5 import("//cc/cc.gni") |
| 6 import("//gpu/vulkan/features.gni") | 6 import("//gpu/vulkan/features.gni") |
| 7 | 7 |
| 8 cc_component("cc") { | 8 cc_component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "benchmarks/benchmark_instrumentation.cc", | 10 "benchmarks/benchmark_instrumentation.cc", |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "layers/picture_layer.h", | 94 "layers/picture_layer.h", |
| 95 "layers/picture_layer_impl.cc", | 95 "layers/picture_layer_impl.cc", |
| 96 "layers/picture_layer_impl.h", | 96 "layers/picture_layer_impl.h", |
| 97 "layers/recording_source.cc", | 97 "layers/recording_source.cc", |
| 98 "layers/recording_source.h", | 98 "layers/recording_source.h", |
| 99 "layers/render_surface_impl.cc", | 99 "layers/render_surface_impl.cc", |
| 100 "layers/render_surface_impl.h", | 100 "layers/render_surface_impl.h", |
| 101 "layers/scrollbar_layer_impl_base.cc", | 101 "layers/scrollbar_layer_impl_base.cc", |
| 102 "layers/scrollbar_layer_impl_base.h", | 102 "layers/scrollbar_layer_impl_base.h", |
| 103 "layers/scrollbar_layer_interface.h", | 103 "layers/scrollbar_layer_interface.h", |
| 104 "layers/snap_point_list.cc", |
| 105 "layers/snap_point_list.h", |
| 104 "layers/solid_color_layer.cc", | 106 "layers/solid_color_layer.cc", |
| 105 "layers/solid_color_layer.h", | 107 "layers/solid_color_layer.h", |
| 106 "layers/solid_color_layer_impl.cc", | 108 "layers/solid_color_layer_impl.cc", |
| 107 "layers/solid_color_layer_impl.h", | 109 "layers/solid_color_layer_impl.h", |
| 108 "layers/solid_color_scrollbar_layer.cc", | 110 "layers/solid_color_scrollbar_layer.cc", |
| 109 "layers/solid_color_scrollbar_layer.h", | 111 "layers/solid_color_scrollbar_layer.h", |
| 110 "layers/solid_color_scrollbar_layer_impl.cc", | 112 "layers/solid_color_scrollbar_layer_impl.cc", |
| 111 "layers/solid_color_scrollbar_layer_impl.h", | 113 "layers/solid_color_scrollbar_layer_impl.h", |
| 112 "layers/surface_layer.cc", | 114 "layers/surface_layer.cc", |
| 113 "layers/surface_layer.h", | 115 "layers/surface_layer.h", |
| (...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 970 data = [ | 972 data = [ |
| 971 "test/data/", | 973 "test/data/", |
| 972 | 974 |
| 973 # Needed for isolate script to execute. | 975 # Needed for isolate script to execute. |
| 974 "//testing/scripts/common.py", | 976 "//testing/scripts/common.py", |
| 975 "//testing/xvfb.py", | 977 "//testing/xvfb.py", |
| 976 "//testing/scripts/run_gtest_perf_test.py", | 978 "//testing/scripts/run_gtest_perf_test.py", |
| 977 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 979 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 978 ] | 980 ] |
| 979 } | 981 } |
| OLD | NEW |