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/draw_image.h", | 303 "playback/draw_image.h", |
302 "playback/drawing_display_item.cc", | 304 "playback/drawing_display_item.cc", |
303 "playback/drawing_display_item.h", | 305 "playback/drawing_display_item.h", |
304 "playback/filter_display_item.cc", | 306 "playback/filter_display_item.cc", |
305 "playback/filter_display_item.h", | 307 "playback/filter_display_item.h", |
306 "playback/float_clip_display_item.cc", | 308 "playback/float_clip_display_item.cc", |
(...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
926 "//ui/gl", | 928 "//ui/gl", |
927 "//ui/gl:test_support", | 929 "//ui/gl:test_support", |
928 ] | 930 ] |
929 | 931 |
930 if (is_android) { | 932 if (is_android) { |
931 isolate_file = "cc_perftests.isolate" | 933 isolate_file = "cc_perftests.isolate" |
932 } | 934 } |
933 } | 935 } |
934 # When adding support for isolates, please have a look at run-time dependencies | 936 # When adding support for isolates, please have a look at run-time dependencies |
935 # in the cc_unittests_run target in cc_tests.gyp. | 937 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |