| 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.cc", | 300 "playback/display_list_recording_source.cc", |
| 301 "playback/display_list_recording_source.h", | 301 "playback/display_list_recording_source.h", |
| 302 "playback/draw_image.cc", | 302 "playback/draw_image.cc", |
| 303 "playback/draw_image.h", | 303 "playback/draw_image.h", |
| 304 "playback/drawing_display_item.cc", | 304 "playback/drawing_display_item.cc", |
| 305 "playback/drawing_display_item.h", | 305 "playback/drawing_display_item.h", |
| 306 "playback/filter_display_item.cc", | 306 "playback/filter_display_item.cc", |
| 307 "playback/filter_display_item.h", | 307 "playback/filter_display_item.h", |
| 308 "playback/float_clip_display_item.cc", | 308 "playback/float_clip_display_item.cc", |
| 309 "playback/float_clip_display_item.h", | 309 "playback/float_clip_display_item.h", |
| 310 "playback/image_hijack_canvas.cc", |
| 311 "playback/image_hijack_canvas.h", |
| 310 "playback/largest_display_item.cc", | 312 "playback/largest_display_item.cc", |
| 311 "playback/largest_display_item.h", | 313 "playback/largest_display_item.h", |
| 312 "playback/transform_display_item.cc", | 314 "playback/transform_display_item.cc", |
| 313 "playback/transform_display_item.h", | 315 "playback/transform_display_item.h", |
| 314 "proto/base_conversions.cc", | 316 "proto/base_conversions.cc", |
| 315 "proto/base_conversions.h", | 317 "proto/base_conversions.h", |
| 316 "proto/cc_conversions.cc", | 318 "proto/cc_conversions.cc", |
| 317 "proto/cc_conversions.h", | 319 "proto/cc_conversions.h", |
| 318 "proto/gfx_conversions.cc", | 320 "proto/gfx_conversions.cc", |
| 319 "proto/gfx_conversions.h", | 321 "proto/gfx_conversions.h", |
| (...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 989 "//ui/gl", | 991 "//ui/gl", |
| 990 "//ui/gl:test_support", | 992 "//ui/gl:test_support", |
| 991 ] | 993 ] |
| 992 | 994 |
| 993 if (is_android) { | 995 if (is_android) { |
| 994 isolate_file = "cc_perftests.isolate" | 996 isolate_file = "cc_perftests.isolate" |
| 995 } | 997 } |
| 996 } | 998 } |
| 997 # When adding support for isolates, please have a look at run-time dependencies | 999 # When adding support for isolates, please have a look at run-time dependencies |
| 998 # in the cc_unittests_run target in cc_tests.gyp. | 1000 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |