| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 "playback/draw_image.cc", | 257 "playback/draw_image.cc", |
| 258 "playback/draw_image.h", | 258 "playback/draw_image.h", |
| 259 "playback/drawing_display_item.cc", | 259 "playback/drawing_display_item.cc", |
| 260 "playback/drawing_display_item.h", | 260 "playback/drawing_display_item.h", |
| 261 "playback/filter_display_item.cc", | 261 "playback/filter_display_item.cc", |
| 262 "playback/filter_display_item.h", | 262 "playback/filter_display_item.h", |
| 263 "playback/float_clip_display_item.cc", | 263 "playback/float_clip_display_item.cc", |
| 264 "playback/float_clip_display_item.h", | 264 "playback/float_clip_display_item.h", |
| 265 "playback/image_hijack_canvas.cc", | 265 "playback/image_hijack_canvas.cc", |
| 266 "playback/image_hijack_canvas.h", | 266 "playback/image_hijack_canvas.h", |
| 267 "playback/image_id.h", |
| 267 "playback/largest_display_item.cc", | 268 "playback/largest_display_item.cc", |
| 268 "playback/largest_display_item.h", | 269 "playback/largest_display_item.h", |
| 269 "playback/raster_source.cc", | 270 "playback/raster_source.cc", |
| 270 "playback/raster_source.h", | 271 "playback/raster_source.h", |
| 271 "playback/recording_source.cc", | 272 "playback/recording_source.cc", |
| 272 "playback/recording_source.h", | 273 "playback/recording_source.h", |
| 273 "playback/skip_image_canvas.cc", | 274 "playback/skip_image_canvas.cc", |
| 274 "playback/skip_image_canvas.h", | 275 "playback/skip_image_canvas.h", |
| 275 "playback/transform_display_item.cc", | 276 "playback/transform_display_item.cc", |
| 276 "playback/transform_display_item.h", | 277 "playback/transform_display_item.h", |
| (...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 988 data = [ | 989 data = [ |
| 989 "test/data/", | 990 "test/data/", |
| 990 | 991 |
| 991 # Needed for isolate script to execute. | 992 # Needed for isolate script to execute. |
| 992 "//testing/scripts/common.py", | 993 "//testing/scripts/common.py", |
| 993 "//testing/xvfb.py", | 994 "//testing/xvfb.py", |
| 994 "//testing/scripts/run_gtest_perf_test.py", | 995 "//testing/scripts/run_gtest_perf_test.py", |
| 995 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 996 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 996 ] | 997 ] |
| 997 } | 998 } |
| OLD | NEW |