| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 "playback/clip_display_item.cc", | 243 "playback/clip_display_item.cc", |
| 244 "playback/clip_display_item.h", | 244 "playback/clip_display_item.h", |
| 245 "playback/clip_path_display_item.cc", | 245 "playback/clip_path_display_item.cc", |
| 246 "playback/clip_path_display_item.h", | 246 "playback/clip_path_display_item.h", |
| 247 "playback/compositing_display_item.cc", | 247 "playback/compositing_display_item.cc", |
| 248 "playback/compositing_display_item.h", | 248 "playback/compositing_display_item.h", |
| 249 "playback/decoded_draw_image.cc", | 249 "playback/decoded_draw_image.cc", |
| 250 "playback/decoded_draw_image.h", | 250 "playback/decoded_draw_image.h", |
| 251 "playback/discardable_image_map.cc", | 251 "playback/discardable_image_map.cc", |
| 252 "playback/discardable_image_map.h", | 252 "playback/discardable_image_map.h", |
| 253 "playback/display_item.cc", | |
| 254 "playback/display_item.h", | 253 "playback/display_item.h", |
| 255 "playback/display_item_list.cc", | 254 "playback/display_item_list.cc", |
| 256 "playback/display_item_list.h", | 255 "playback/display_item_list.h", |
| 257 "playback/draw_image.cc", | 256 "playback/draw_image.cc", |
| 258 "playback/draw_image.h", | 257 "playback/draw_image.h", |
| 259 "playback/drawing_display_item.cc", | 258 "playback/drawing_display_item.cc", |
| 260 "playback/drawing_display_item.h", | 259 "playback/drawing_display_item.h", |
| 261 "playback/filter_display_item.cc", | 260 "playback/filter_display_item.cc", |
| 262 "playback/filter_display_item.h", | 261 "playback/filter_display_item.h", |
| 263 "playback/float_clip_display_item.cc", | 262 "playback/float_clip_display_item.cc", |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 988 data = [ | 987 data = [ |
| 989 "test/data/", | 988 "test/data/", |
| 990 | 989 |
| 991 # Needed for isolate script to execute. | 990 # Needed for isolate script to execute. |
| 992 "//testing/scripts/common.py", | 991 "//testing/scripts/common.py", |
| 993 "//testing/xvfb.py", | 992 "//testing/xvfb.py", |
| 994 "//testing/scripts/run_gtest_perf_test.py", | 993 "//testing/scripts/run_gtest_perf_test.py", |
| 995 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 994 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 996 ] | 995 ] |
| 997 } | 996 } |
| OLD | NEW |