| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//cc/cc.gni") | 6 import("//cc/cc.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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "input/scroll_state_data.h", | 70 "input/scroll_state_data.h", |
| 71 "input/scrollbar_animation_controller.cc", | 71 "input/scrollbar_animation_controller.cc", |
| 72 "input/scrollbar_animation_controller.h", | 72 "input/scrollbar_animation_controller.h", |
| 73 "input/selection.h", | 73 "input/selection.h", |
| 74 "input/single_scrollbar_animation_controller_thinning.cc", | 74 "input/single_scrollbar_animation_controller_thinning.cc", |
| 75 "input/single_scrollbar_animation_controller_thinning.h", | 75 "input/single_scrollbar_animation_controller_thinning.h", |
| 76 "layers/append_quads_data.h", | 76 "layers/append_quads_data.h", |
| 77 "layers/content_layer_client.h", | 77 "layers/content_layer_client.h", |
| 78 "layers/draw_properties.cc", | 78 "layers/draw_properties.cc", |
| 79 "layers/draw_properties.h", | 79 "layers/draw_properties.h", |
| 80 "layers/empty_content_layer_client.cc", | |
| 81 "layers/empty_content_layer_client.h", | |
| 82 "layers/heads_up_display_layer.cc", | 80 "layers/heads_up_display_layer.cc", |
| 83 "layers/heads_up_display_layer.h", | 81 "layers/heads_up_display_layer.h", |
| 84 "layers/heads_up_display_layer_impl.cc", | 82 "layers/heads_up_display_layer_impl.cc", |
| 85 "layers/heads_up_display_layer_impl.h", | 83 "layers/heads_up_display_layer_impl.h", |
| 86 "layers/layer.cc", | 84 "layers/layer.cc", |
| 87 "layers/layer.h", | 85 "layers/layer.h", |
| 88 "layers/layer_client.h", | 86 "layers/layer_client.h", |
| 89 "layers/layer_collections.h", | 87 "layers/layer_collections.h", |
| 90 "layers/layer_impl.cc", | 88 "layers/layer_impl.cc", |
| 91 "layers/layer_impl.h", | 89 "layers/layer_impl.h", |
| (...skipping 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 data = [ | 998 data = [ |
| 1001 "test/data/", | 999 "test/data/", |
| 1002 | 1000 |
| 1003 # Needed for isolate script to execute. | 1001 # Needed for isolate script to execute. |
| 1004 "//testing/scripts/common.py", | 1002 "//testing/scripts/common.py", |
| 1005 "//testing/xvfb.py", | 1003 "//testing/xvfb.py", |
| 1006 "//testing/scripts/run_gtest_perf_test.py", | 1004 "//testing/scripts/run_gtest_perf_test.py", |
| 1007 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1005 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1008 ] | 1006 ] |
| 1009 } | 1007 } |
| OLD | NEW |