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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("cc") { | 7 component("cc") { |
8 sources = [ | 8 sources = [ |
9 "animation/animation.cc", | 9 "animation/animation.cc", |
10 "animation/animation.h", | 10 "animation/animation.h", |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 "playback/discardable_image_map.cc", | 287 "playback/discardable_image_map.cc", |
288 "playback/discardable_image_map.h", | 288 "playback/discardable_image_map.h", |
289 "playback/display_item.cc", | 289 "playback/display_item.cc", |
290 "playback/display_item.h", | 290 "playback/display_item.h", |
291 "playback/display_item_list.cc", | 291 "playback/display_item_list.cc", |
292 "playback/display_item_list.h", | 292 "playback/display_item_list.h", |
293 "playback/display_item_list_bounds_calculator.cc", | 293 "playback/display_item_list_bounds_calculator.cc", |
294 "playback/display_item_list_bounds_calculator.h", | 294 "playback/display_item_list_bounds_calculator.h", |
295 "playback/display_item_list_settings.cc", | 295 "playback/display_item_list_settings.cc", |
296 "playback/display_item_list_settings.h", | 296 "playback/display_item_list_settings.h", |
| 297 "playback/display_item_proto_factory.cc", |
| 298 "playback/display_item_proto_factory.h", |
297 "playback/display_list_raster_source.cc", | 299 "playback/display_list_raster_source.cc", |
298 "playback/display_list_raster_source.h", | 300 "playback/display_list_raster_source.h", |
299 "playback/display_list_recording_source.cc", | 301 "playback/display_list_recording_source.cc", |
300 "playback/display_list_recording_source.h", | 302 "playback/display_list_recording_source.h", |
301 "playback/drawing_display_item.cc", | 303 "playback/drawing_display_item.cc", |
302 "playback/drawing_display_item.h", | 304 "playback/drawing_display_item.h", |
303 "playback/filter_display_item.cc", | 305 "playback/filter_display_item.cc", |
304 "playback/filter_display_item.h", | 306 "playback/filter_display_item.h", |
305 "playback/float_clip_display_item.cc", | 307 "playback/float_clip_display_item.cc", |
306 "playback/float_clip_display_item.h", | 308 "playback/float_clip_display_item.h", |
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
933 "//ui/gl", | 935 "//ui/gl", |
934 "//ui/gl:test_support", | 936 "//ui/gl:test_support", |
935 ] | 937 ] |
936 | 938 |
937 if (is_android) { | 939 if (is_android) { |
938 isolate_file = "cc_perftests.isolate" | 940 isolate_file = "cc_perftests.isolate" |
939 } | 941 } |
940 } | 942 } |
941 # When adding support for isolates, please have a look at run-time dependencies | 943 # When adding support for isolates, please have a look at run-time dependencies |
942 # in the cc_unittests_run target in cc_tests.gyp. | 944 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |