| 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 "layers/viewport.cc", | 194 "layers/viewport.cc", |
| 195 "layers/viewport.h", | 195 "layers/viewport.h", |
| 196 "output/begin_frame_args.cc", | 196 "output/begin_frame_args.cc", |
| 197 "output/begin_frame_args.h", | 197 "output/begin_frame_args.h", |
| 198 "output/bsp_tree.cc", | 198 "output/bsp_tree.cc", |
| 199 "output/bsp_tree.h", | 199 "output/bsp_tree.h", |
| 200 "output/bsp_walk_action.cc", | 200 "output/bsp_walk_action.cc", |
| 201 "output/bsp_walk_action.h", | 201 "output/bsp_walk_action.h", |
| 202 "output/ca_layer_overlay.cc", | 202 "output/ca_layer_overlay.cc", |
| 203 "output/ca_layer_overlay.h", | 203 "output/ca_layer_overlay.h", |
| 204 "output/color_lut_cache.cc", |
| 205 "output/color_lut_cache.h", |
| 204 "output/compositor_frame.cc", | 206 "output/compositor_frame.cc", |
| 205 "output/compositor_frame.h", | 207 "output/compositor_frame.h", |
| 206 "output/compositor_frame_metadata.cc", | 208 "output/compositor_frame_metadata.cc", |
| 207 "output/compositor_frame_metadata.h", | 209 "output/compositor_frame_metadata.h", |
| 208 "output/context_provider.h", | 210 "output/context_provider.h", |
| 209 "output/copy_output_request.cc", | 211 "output/copy_output_request.cc", |
| 210 "output/copy_output_request.h", | 212 "output/copy_output_request.h", |
| 211 "output/copy_output_result.cc", | 213 "output/copy_output_result.cc", |
| 212 "output/copy_output_result.h", | 214 "output/copy_output_result.h", |
| 213 "output/delegated_frame_data.cc", | 215 "output/delegated_frame_data.cc", |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 "//skia", | 559 "//skia", |
| 558 ] | 560 ] |
| 559 deps = [ | 561 deps = [ |
| 560 "//base", | 562 "//base", |
| 561 "//base/third_party/dynamic_annotations", | 563 "//base/third_party/dynamic_annotations", |
| 562 "//cc/proto", | 564 "//cc/proto", |
| 563 "//cc/surfaces:surface_id", | 565 "//cc/surfaces:surface_id", |
| 564 "//gpu", | 566 "//gpu", |
| 565 "//gpu/command_buffer/client:gles2_interface", | 567 "//gpu/command_buffer/client:gles2_interface", |
| 566 "//media", | 568 "//media", |
| 569 "//third_party/qcms:qcms", |
| 567 "//ui/events:events_base", | 570 "//ui/events:events_base", |
| 568 "//ui/gfx", | 571 "//ui/gfx", |
| 569 "//ui/gfx/geometry", | 572 "//ui/gfx/geometry", |
| 570 "//ui/gl", | 573 "//ui/gl", |
| 571 ] | 574 ] |
| 572 | 575 |
| 573 defines = [ "CC_IMPLEMENTATION=1" ] | 576 defines = [ "CC_IMPLEMENTATION=1" ] |
| 574 | 577 |
| 575 if (!is_debug && (is_win || is_android)) { | 578 if (!is_debug && (is_win || is_android)) { |
| 576 configs -= [ "//build/config/compiler:default_optimization" ] | 579 configs -= [ "//build/config/compiler:default_optimization" ] |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1041 "//ui/gfx/geometry", | 1044 "//ui/gfx/geometry", |
| 1042 "//ui/gl", | 1045 "//ui/gl", |
| 1043 "//ui/gl:test_support", | 1046 "//ui/gl:test_support", |
| 1044 ] | 1047 ] |
| 1045 | 1048 |
| 1046 # This target should not require the Chrome executable to run. | 1049 # This target should not require the Chrome executable to run. |
| 1047 assert_no_deps = [ "//chrome" ] | 1050 assert_no_deps = [ "//chrome" ] |
| 1048 } | 1051 } |
| 1049 # When adding support for isolates, please have a look at run-time dependencies | 1052 # When adding support for isolates, please have a look at run-time dependencies |
| 1050 # in the cc_unittests_run target in cc_tests.gyp. | 1053 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |