| 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 "debug/benchmark_instrumentation.cc", | 10 "debug/benchmark_instrumentation.cc", |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "layers/painted_scrollbar_layer.cc", | 110 "layers/painted_scrollbar_layer.cc", |
| 111 "layers/painted_scrollbar_layer.h", | 111 "layers/painted_scrollbar_layer.h", |
| 112 "layers/painted_scrollbar_layer_impl.cc", | 112 "layers/painted_scrollbar_layer_impl.cc", |
| 113 "layers/painted_scrollbar_layer_impl.h", | 113 "layers/painted_scrollbar_layer_impl.h", |
| 114 "layers/picture_image_layer.cc", | 114 "layers/picture_image_layer.cc", |
| 115 "layers/picture_image_layer.h", | 115 "layers/picture_image_layer.h", |
| 116 "layers/picture_layer.cc", | 116 "layers/picture_layer.cc", |
| 117 "layers/picture_layer.h", | 117 "layers/picture_layer.h", |
| 118 "layers/picture_layer_impl.cc", | 118 "layers/picture_layer_impl.cc", |
| 119 "layers/picture_layer_impl.h", | 119 "layers/picture_layer_impl.h", |
| 120 "layers/render_pass_sink.h", | |
| 121 "layers/render_surface_impl.cc", | 120 "layers/render_surface_impl.cc", |
| 122 "layers/render_surface_impl.h", | 121 "layers/render_surface_impl.h", |
| 123 "layers/scrollbar_layer_impl_base.cc", | 122 "layers/scrollbar_layer_impl_base.cc", |
| 124 "layers/scrollbar_layer_impl_base.h", | 123 "layers/scrollbar_layer_impl_base.h", |
| 125 "layers/scrollbar_layer_interface.h", | 124 "layers/scrollbar_layer_interface.h", |
| 126 "layers/solid_color_layer.cc", | 125 "layers/solid_color_layer.cc", |
| 127 "layers/solid_color_layer.h", | 126 "layers/solid_color_layer.h", |
| 128 "layers/solid_color_layer_impl.cc", | 127 "layers/solid_color_layer_impl.cc", |
| 129 "layers/solid_color_layer_impl.h", | 128 "layers/solid_color_layer_impl.h", |
| 130 "layers/solid_color_scrollbar_layer.cc", | 129 "layers/solid_color_scrollbar_layer.cc", |
| (...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1001 data = [ | 1000 data = [ |
| 1002 "test/data/", | 1001 "test/data/", |
| 1003 | 1002 |
| 1004 # Needed for isolate script to execute. | 1003 # Needed for isolate script to execute. |
| 1005 "//testing/scripts/common.py", | 1004 "//testing/scripts/common.py", |
| 1006 "//testing/xvfb.py", | 1005 "//testing/xvfb.py", |
| 1007 "//testing/scripts/run_gtest_perf_test.py", | 1006 "//testing/scripts/run_gtest_perf_test.py", |
| 1008 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1007 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1009 ] | 1008 ] |
| 1010 } | 1009 } |
| OLD | NEW |