| 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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 "playback/picture_pile.h", | 314 "playback/picture_pile.h", |
| 315 "playback/picture_pile_impl.cc", | 315 "playback/picture_pile_impl.cc", |
| 316 "playback/picture_pile_impl.h", | 316 "playback/picture_pile_impl.h", |
| 317 "playback/pixel_ref_map.cc", | 317 "playback/pixel_ref_map.cc", |
| 318 "playback/pixel_ref_map.h", | 318 "playback/pixel_ref_map.h", |
| 319 "playback/raster_source.h", | 319 "playback/raster_source.h", |
| 320 "playback/raster_source_helper.cc", | 320 "playback/raster_source_helper.cc", |
| 321 "playback/raster_source_helper.h", | 321 "playback/raster_source_helper.h", |
| 322 "playback/transform_display_item.cc", | 322 "playback/transform_display_item.cc", |
| 323 "playback/transform_display_item.h", | 323 "playback/transform_display_item.h", |
| 324 "quads/checkerboard_draw_quad.cc", | |
| 325 "quads/checkerboard_draw_quad.h", | |
| 326 "quads/content_draw_quad_base.cc", | 324 "quads/content_draw_quad_base.cc", |
| 327 "quads/content_draw_quad_base.h", | 325 "quads/content_draw_quad_base.h", |
| 328 "quads/debug_border_draw_quad.cc", | 326 "quads/debug_border_draw_quad.cc", |
| 329 "quads/debug_border_draw_quad.h", | 327 "quads/debug_border_draw_quad.h", |
| 330 "quads/draw_polygon.cc", | 328 "quads/draw_polygon.cc", |
| 331 "quads/draw_polygon.h", | 329 "quads/draw_polygon.h", |
| 332 "quads/draw_quad.cc", | 330 "quads/draw_quad.cc", |
| 333 "quads/draw_quad.h", | 331 "quads/draw_quad.h", |
| 334 "quads/io_surface_draw_quad.cc", | 332 "quads/io_surface_draw_quad.cc", |
| 335 "quads/io_surface_draw_quad.h", | 333 "quads/io_surface_draw_quad.h", |
| (...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 923 "//ui/gl", | 921 "//ui/gl", |
| 924 "//ui/gl:test_support", | 922 "//ui/gl:test_support", |
| 925 ] | 923 ] |
| 926 | 924 |
| 927 if (is_android) { | 925 if (is_android) { |
| 928 isolate_file = "cc_perftests.isolate" | 926 isolate_file = "cc_perftests.isolate" |
| 929 } | 927 } |
| 930 } | 928 } |
| 931 # 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 |
| 932 # in the cc_unittests_run target in cc_tests.gyp. | 930 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |