| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("display_compositor") { | 8 component("display_compositor") { |
| 9 sources = [ | 9 sources = [ |
| 10 "buffer_queue.cc", | 10 "buffer_queue.cc", |
| 11 "buffer_queue.h", | 11 "buffer_queue.h", |
| 12 "compositor_overlay_candidate_validator.h", | 12 "compositor_overlay_candidate_validator.h", |
| 13 "display_compositor_export.h", | |
| 14 "gl_helper.cc", | 13 "gl_helper.cc", |
| 15 "gl_helper.h", | 14 "gl_helper.h", |
| 16 "gl_helper_readback_support.cc", | 15 "gl_helper_readback_support.cc", |
| 17 "gl_helper_readback_support.h", | 16 "gl_helper_readback_support.h", |
| 18 "gl_helper_scaling.cc", | 17 "gl_helper_scaling.cc", |
| 19 "gl_helper_scaling.h", | 18 "gl_helper_scaling.h", |
| 20 "host_shared_bitmap_manager.cc", | 19 "host_shared_bitmap_manager.cc", |
| 21 "host_shared_bitmap_manager.h", | 20 "host_shared_bitmap_manager.h", |
| 22 ] | 21 ] |
| 23 | 22 |
| 24 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 23 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 25 | 24 |
| 26 defines = [ "DISPLAY_COMPOSITOR_IMPLEMENTATION" ] | 25 defines = [ "VIZ_IMPLEMENTATION" ] |
| 27 | 26 |
| 28 deps = [ | 27 deps = [ |
| 29 "//base", | 28 "//base", |
| 30 "//cc", | 29 "//cc", |
| 31 "//cc/ipc:interfaces", | 30 "//cc/ipc:interfaces", |
| 32 "//cc/surfaces", | 31 "//cc/surfaces", |
| 33 "//gpu/command_buffer/client", | 32 "//gpu/command_buffer/client", |
| 34 "//gpu/command_buffer/client:gles2_interface", | 33 "//gpu/command_buffer/client:gles2_interface", |
| 35 "//gpu/command_buffer/common", | 34 "//gpu/command_buffer/common", |
| 36 "//gpu/ipc/common:surface_handle_type", | 35 "//gpu/ipc/common:surface_handle_type", |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 "//skia", | 166 "//skia", |
| 168 "//testing/gmock", | 167 "//testing/gmock", |
| 169 "//testing/gtest", | 168 "//testing/gtest", |
| 170 "//ui/gl:test_support", | 169 "//ui/gl:test_support", |
| 171 ] | 170 ] |
| 172 | 171 |
| 173 data_deps = [ | 172 data_deps = [ |
| 174 "//third_party/mesa:osmesa", | 173 "//third_party/mesa:osmesa", |
| 175 ] | 174 ] |
| 176 } | 175 } |
| OLD | NEW |