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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 "playback/display_list_recording_source.h", | 300 "playback/display_list_recording_source.h", |
301 "playback/draw_image.h", | 301 "playback/draw_image.h", |
302 "playback/drawing_display_item.cc", | 302 "playback/drawing_display_item.cc", |
303 "playback/drawing_display_item.h", | 303 "playback/drawing_display_item.h", |
304 "playback/filter_display_item.cc", | 304 "playback/filter_display_item.cc", |
305 "playback/filter_display_item.h", | 305 "playback/filter_display_item.h", |
306 "playback/float_clip_display_item.cc", | 306 "playback/float_clip_display_item.cc", |
307 "playback/float_clip_display_item.h", | 307 "playback/float_clip_display_item.h", |
308 "playback/largest_display_item.cc", | 308 "playback/largest_display_item.cc", |
309 "playback/largest_display_item.h", | 309 "playback/largest_display_item.h", |
310 "playback/raster_source.h", | |
311 "playback/raster_source_helper.cc", | |
312 "playback/raster_source_helper.h", | |
313 "playback/transform_display_item.cc", | 310 "playback/transform_display_item.cc", |
314 "playback/transform_display_item.h", | 311 "playback/transform_display_item.h", |
315 "proto/gfx_conversions.cc", | 312 "proto/gfx_conversions.cc", |
316 "proto/gfx_conversions.h", | 313 "proto/gfx_conversions.h", |
317 "quads/content_draw_quad_base.cc", | 314 "quads/content_draw_quad_base.cc", |
318 "quads/content_draw_quad_base.h", | 315 "quads/content_draw_quad_base.h", |
319 "quads/debug_border_draw_quad.cc", | 316 "quads/debug_border_draw_quad.cc", |
320 "quads/debug_border_draw_quad.h", | 317 "quads/debug_border_draw_quad.h", |
321 "quads/draw_polygon.cc", | 318 "quads/draw_polygon.cc", |
322 "quads/draw_polygon.h", | 319 "quads/draw_polygon.h", |
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
924 "//ui/gl", | 921 "//ui/gl", |
925 "//ui/gl:test_support", | 922 "//ui/gl:test_support", |
926 ] | 923 ] |
927 | 924 |
928 if (is_android) { | 925 if (is_android) { |
929 isolate_file = "cc_perftests.isolate" | 926 isolate_file = "cc_perftests.isolate" |
930 } | 927 } |
931 } | 928 } |
932 # When adding support for isolates, please have a look at run-time dependencies | 929 # When adding support for isolates, please have a look at run-time dependencies |
933 # in the cc_unittests_run target in cc_tests.gyp. | 930 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |