| 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", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "gpu_offscreen_compositor_frame_sink.h", | 26 "gpu_offscreen_compositor_frame_sink.h", |
| 27 ] | 27 ] |
| 28 | 28 |
| 29 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 29 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 30 | 30 |
| 31 defines = [ "DISPLAY_COMPOSITOR_IMPLEMENTATION" ] | 31 defines = [ "DISPLAY_COMPOSITOR_IMPLEMENTATION" ] |
| 32 | 32 |
| 33 deps = [ | 33 deps = [ |
| 34 "//base", | 34 "//base", |
| 35 "//cc", | 35 "//cc", |
| 36 "//cc/ipc:internal_interfaces", | 36 "//cc/ipc:interfaces", |
| 37 "//cc/surfaces", | 37 "//cc/surfaces", |
| 38 "//gpu/command_buffer/client", | 38 "//gpu/command_buffer/client", |
| 39 "//gpu/command_buffer/client:gles2_interface", | 39 "//gpu/command_buffer/client:gles2_interface", |
| 40 "//gpu/command_buffer/common", | 40 "//gpu/command_buffer/common", |
| 41 "//gpu/ipc/common:surface_handle_type", | 41 "//gpu/ipc/common:surface_handle_type", |
| 42 "//skia", | 42 "//skia", |
| 43 "//ui/display/types", | 43 "//ui/display/types", |
| 44 "//ui/gfx", | 44 "//ui/gfx", |
| 45 ] | 45 ] |
| 46 | 46 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 "//skia", | 171 "//skia", |
| 172 "//testing/gmock", | 172 "//testing/gmock", |
| 173 "//testing/gtest", | 173 "//testing/gtest", |
| 174 "//ui/gl:test_support", | 174 "//ui/gl:test_support", |
| 175 ] | 175 ] |
| 176 | 176 |
| 177 data_deps = [ | 177 data_deps = [ |
| 178 "//third_party/mesa:osmesa", | 178 "//third_party/mesa:osmesa", |
| 179 ] | 179 ] |
| 180 } | 180 } |
| OLD | NEW |