| 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 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 cc_component("cc") { | 9 cc_component("cc") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "blimp/remote_compositor_bridge.cc", | 27 "blimp/remote_compositor_bridge.cc", |
| 28 "blimp/remote_compositor_bridge.h", | 28 "blimp/remote_compositor_bridge.h", |
| 29 "blimp/remote_compositor_bridge_client.h", | 29 "blimp/remote_compositor_bridge_client.h", |
| 30 "blimp/synced_property_remote.h", | 30 "blimp/synced_property_remote.h", |
| 31 "debug/benchmark_instrumentation.cc", | 31 "debug/benchmark_instrumentation.cc", |
| 32 "debug/benchmark_instrumentation.h", | 32 "debug/benchmark_instrumentation.h", |
| 33 "debug/debug_colors.cc", | 33 "debug/debug_colors.cc", |
| 34 "debug/debug_colors.h", | 34 "debug/debug_colors.h", |
| 35 "debug/debug_rect_history.cc", | 35 "debug/debug_rect_history.cc", |
| 36 "debug/debug_rect_history.h", | 36 "debug/debug_rect_history.h", |
| 37 "debug/devtools_instrumentation.cc", |
| 37 "debug/devtools_instrumentation.h", | 38 "debug/devtools_instrumentation.h", |
| 38 "debug/frame_rate_counter.cc", | 39 "debug/frame_rate_counter.cc", |
| 39 "debug/frame_rate_counter.h", | 40 "debug/frame_rate_counter.h", |
| 40 "debug/frame_viewer_instrumentation.cc", | 41 "debug/frame_viewer_instrumentation.cc", |
| 41 "debug/frame_viewer_instrumentation.h", | 42 "debug/frame_viewer_instrumentation.h", |
| 42 "debug/invalidation_benchmark.cc", | 43 "debug/invalidation_benchmark.cc", |
| 43 "debug/invalidation_benchmark.h", | 44 "debug/invalidation_benchmark.h", |
| 44 "debug/lap_timer.cc", | 45 "debug/lap_timer.cc", |
| 45 "debug/lap_timer.h", | 46 "debug/lap_timer.h", |
| 46 "debug/layer_tree_debug_state.cc", | 47 "debug/layer_tree_debug_state.cc", |
| (...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1041 data = [ | 1042 data = [ |
| 1042 "test/data/", | 1043 "test/data/", |
| 1043 | 1044 |
| 1044 # Needed for isolate script to execute. | 1045 # Needed for isolate script to execute. |
| 1045 "//testing/scripts/common.py", | 1046 "//testing/scripts/common.py", |
| 1046 "//testing/xvfb.py", | 1047 "//testing/xvfb.py", |
| 1047 "//testing/scripts/run_gtest_perf_test.py", | 1048 "//testing/scripts/run_gtest_perf_test.py", |
| 1048 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1049 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1049 ] | 1050 ] |
| 1050 } | 1051 } |
| OLD | NEW |