| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 "output/buffer_to_texture_target_map.cc", | 202 "output/buffer_to_texture_target_map.cc", |
| 203 "output/buffer_to_texture_target_map.h", | 203 "output/buffer_to_texture_target_map.h", |
| 204 "output/ca_layer_overlay.cc", | 204 "output/ca_layer_overlay.cc", |
| 205 "output/ca_layer_overlay.h", | 205 "output/ca_layer_overlay.h", |
| 206 "output/color_lut_cache.cc", | 206 "output/color_lut_cache.cc", |
| 207 "output/color_lut_cache.h", | 207 "output/color_lut_cache.h", |
| 208 "output/compositor_frame.cc", | 208 "output/compositor_frame.cc", |
| 209 "output/compositor_frame.h", | 209 "output/compositor_frame.h", |
| 210 "output/compositor_frame_metadata.cc", | 210 "output/compositor_frame_metadata.cc", |
| 211 "output/compositor_frame_metadata.h", | 211 "output/compositor_frame_metadata.h", |
| 212 "output/context_provider.cc", |
| 212 "output/context_provider.h", | 213 "output/context_provider.h", |
| 213 "output/copy_output_request.cc", | 214 "output/copy_output_request.cc", |
| 214 "output/copy_output_request.h", | 215 "output/copy_output_request.h", |
| 215 "output/copy_output_result.cc", | 216 "output/copy_output_result.cc", |
| 216 "output/copy_output_result.h", | 217 "output/copy_output_result.h", |
| 217 "output/delegated_frame_data.cc", | 218 "output/delegated_frame_data.cc", |
| 218 "output/delegated_frame_data.h", | 219 "output/delegated_frame_data.h", |
| 219 "output/delegating_renderer.cc", | 220 "output/delegating_renderer.cc", |
| 220 "output/delegating_renderer.h", | 221 "output/delegating_renderer.h", |
| 221 "output/direct_renderer.cc", | 222 "output/direct_renderer.cc", |
| (...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1036 "//ui/gfx/geometry", | 1037 "//ui/gfx/geometry", |
| 1037 "//ui/gl", | 1038 "//ui/gl", |
| 1038 "//ui/gl:test_support", | 1039 "//ui/gl:test_support", |
| 1039 ] | 1040 ] |
| 1040 | 1041 |
| 1041 # This target should not require the Chrome executable to run. | 1042 # This target should not require the Chrome executable to run. |
| 1042 assert_no_deps = [ "//chrome" ] | 1043 assert_no_deps = [ "//chrome" ] |
| 1043 } | 1044 } |
| 1044 # When adding support for isolates, please have a look at run-time dependencies | 1045 # When adding support for isolates, please have a look at run-time dependencies |
| 1045 # in the cc_unittests_run target in cc_tests.gyp. | 1046 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |