| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 "playback/compositing_display_item.cc", | 285 "playback/compositing_display_item.cc", |
| 286 "playback/compositing_display_item.h", | 286 "playback/compositing_display_item.h", |
| 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_settings.cc", | 293 "playback/display_item_list_settings.cc", |
| 294 "playback/display_item_list_settings.h", | 294 "playback/display_item_list_settings.h", |
| 295 "playback/display_item_proto_factory.cc", |
| 296 "playback/display_item_proto_factory.h", |
| 295 "playback/display_list_raster_source.cc", | 297 "playback/display_list_raster_source.cc", |
| 296 "playback/display_list_raster_source.h", | 298 "playback/display_list_raster_source.h", |
| 297 "playback/display_list_recording_source.cc", | 299 "playback/display_list_recording_source.cc", |
| 298 "playback/display_list_recording_source.h", | 300 "playback/display_list_recording_source.h", |
| 299 "playback/draw_image.h", | 301 "playback/draw_image.h", |
| 300 "playback/drawing_display_item.cc", | 302 "playback/drawing_display_item.cc", |
| 301 "playback/drawing_display_item.h", | 303 "playback/drawing_display_item.h", |
| 302 "playback/filter_display_item.cc", | 304 "playback/filter_display_item.cc", |
| 303 "playback/filter_display_item.h", | 305 "playback/filter_display_item.h", |
| 304 "playback/float_clip_display_item.cc", | 306 "playback/float_clip_display_item.cc", |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 928 "//ui/gl", | 930 "//ui/gl", |
| 929 "//ui/gl:test_support", | 931 "//ui/gl:test_support", |
| 930 ] | 932 ] |
| 931 | 933 |
| 932 if (is_android) { | 934 if (is_android) { |
| 933 isolate_file = "cc_perftests.isolate" | 935 isolate_file = "cc_perftests.isolate" |
| 934 } | 936 } |
| 935 } | 937 } |
| 936 # When adding support for isolates, please have a look at run-time dependencies | 938 # When adding support for isolates, please have a look at run-time dependencies |
| 937 # in the cc_unittests_run target in cc_tests.gyp. | 939 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |