| 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 26 matching lines...) Expand all Loading... |
| 37 "debug/picture_debug_util.h", | 37 "debug/picture_debug_util.h", |
| 38 "debug/rasterize_and_record_benchmark.cc", | 38 "debug/rasterize_and_record_benchmark.cc", |
| 39 "debug/rasterize_and_record_benchmark.h", | 39 "debug/rasterize_and_record_benchmark.h", |
| 40 "debug/rasterize_and_record_benchmark_impl.cc", | 40 "debug/rasterize_and_record_benchmark_impl.cc", |
| 41 "debug/rasterize_and_record_benchmark_impl.h", | 41 "debug/rasterize_and_record_benchmark_impl.h", |
| 42 "debug/rendering_stats.cc", | 42 "debug/rendering_stats.cc", |
| 43 "debug/rendering_stats.h", | 43 "debug/rendering_stats.h", |
| 44 "debug/rendering_stats_instrumentation.cc", | 44 "debug/rendering_stats_instrumentation.cc", |
| 45 "debug/rendering_stats_instrumentation.h", | 45 "debug/rendering_stats_instrumentation.h", |
| 46 "debug/ring_buffer.h", | 46 "debug/ring_buffer.h", |
| 47 "debug/traced_display_item_list.cc", | |
| 48 "debug/traced_display_item_list.h", | |
| 49 "debug/traced_value.cc", | 47 "debug/traced_value.cc", |
| 50 "debug/traced_value.h", | 48 "debug/traced_value.h", |
| 51 "debug/unittest_only_benchmark.cc", | 49 "debug/unittest_only_benchmark.cc", |
| 52 "debug/unittest_only_benchmark.h", | 50 "debug/unittest_only_benchmark.h", |
| 53 "debug/unittest_only_benchmark_impl.cc", | 51 "debug/unittest_only_benchmark_impl.cc", |
| 54 "debug/unittest_only_benchmark_impl.h", | 52 "debug/unittest_only_benchmark_impl.h", |
| 55 "input/browser_controls_offset_manager.cc", | 53 "input/browser_controls_offset_manager.cc", |
| 56 "input/browser_controls_offset_manager.h", | 54 "input/browser_controls_offset_manager.h", |
| 57 "input/browser_controls_offset_manager_client.h", | 55 "input/browser_controls_offset_manager_client.h", |
| 58 "input/input_handler.cc", | 56 "input/input_handler.cc", |
| (...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 998 data = [ | 996 data = [ |
| 999 "test/data/", | 997 "test/data/", |
| 1000 | 998 |
| 1001 # Needed for isolate script to execute. | 999 # Needed for isolate script to execute. |
| 1002 "//testing/scripts/common.py", | 1000 "//testing/scripts/common.py", |
| 1003 "//testing/xvfb.py", | 1001 "//testing/xvfb.py", |
| 1004 "//testing/scripts/run_gtest_perf_test.py", | 1002 "//testing/scripts/run_gtest_perf_test.py", |
| 1005 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1003 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1006 ] | 1004 ] |
| 1007 } | 1005 } |
| OLD | NEW |