| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("cc") { | 8 component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "animation/animation.cc", | 10 "animation/animation.cc", |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 "playback/filter_display_item.cc", | 299 "playback/filter_display_item.cc", |
| 300 "playback/filter_display_item.h", | 300 "playback/filter_display_item.h", |
| 301 "playback/float_clip_display_item.cc", | 301 "playback/float_clip_display_item.cc", |
| 302 "playback/float_clip_display_item.h", | 302 "playback/float_clip_display_item.h", |
| 303 "playback/image_hijack_canvas.cc", | 303 "playback/image_hijack_canvas.cc", |
| 304 "playback/image_hijack_canvas.h", | 304 "playback/image_hijack_canvas.h", |
| 305 "playback/largest_display_item.cc", | 305 "playback/largest_display_item.cc", |
| 306 "playback/largest_display_item.h", | 306 "playback/largest_display_item.h", |
| 307 "playback/raster_source.cc", | 307 "playback/raster_source.cc", |
| 308 "playback/raster_source.h", | 308 "playback/raster_source.h", |
| 309 "playback/recording_source.cc", | |
| 310 "playback/recording_source.h", | |
| 311 "playback/skip_image_canvas.cc", | 309 "playback/skip_image_canvas.cc", |
| 312 "playback/skip_image_canvas.h", | 310 "playback/skip_image_canvas.h", |
| 313 "playback/transform_display_item.cc", | 311 "playback/transform_display_item.cc", |
| 314 "playback/transform_display_item.h", | 312 "playback/transform_display_item.h", |
| 315 "proto/base_conversions.cc", | 313 "proto/base_conversions.cc", |
| 316 "proto/base_conversions.h", | 314 "proto/base_conversions.h", |
| 317 "proto/cc_conversions.cc", | 315 "proto/cc_conversions.cc", |
| 318 "proto/cc_conversions.h", | 316 "proto/cc_conversions.h", |
| 319 "proto/gfx_conversions.cc", | 317 "proto/gfx_conversions.cc", |
| 320 "proto/gfx_conversions.h", | 318 "proto/gfx_conversions.h", |
| (...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1043 "//ui/gfx/geometry", | 1041 "//ui/gfx/geometry", |
| 1044 "//ui/gl", | 1042 "//ui/gl", |
| 1045 "//ui/gl:test_support", | 1043 "//ui/gl:test_support", |
| 1046 ] | 1044 ] |
| 1047 | 1045 |
| 1048 # This target should not require the Chrome executable to run. | 1046 # This target should not require the Chrome executable to run. |
| 1049 assert_no_deps = [ "//chrome" ] | 1047 assert_no_deps = [ "//chrome" ] |
| 1050 } | 1048 } |
| 1051 # When adding support for isolates, please have a look at run-time dependencies | 1049 # When adding support for isolates, please have a look at run-time dependencies |
| 1052 # in the cc_unittests_run target in cc_tests.gyp. | 1050 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |