| 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/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
| 6 import("//ui/ozone/ozone.gni") | 6 import("//ui/ozone/ozone.gni") |
| 7 | 7 |
| 8 visibility = [ "//ui/ozone/*" ] | 8 visibility = [ "//ui/ozone/*" ] |
| 9 | 9 |
| 10 source_set("gbm") { | 10 source_set("gbm") { |
| 11 sources = [ | 11 sources = [ |
| 12 "client_native_pixmap_factory_gbm.cc", | 12 "client_native_pixmap_factory_gbm.cc", |
| 13 "client_native_pixmap_factory_gbm.h", | 13 "client_native_pixmap_factory_gbm.h", |
| 14 "common/display_types.h", |
| 14 "common/drm_util.cc", | 15 "common/drm_util.cc", |
| 15 "common/drm_util.h", | 16 "common/drm_util.h", |
| 16 "common/scoped_drm_types.cc", | 17 "common/scoped_drm_types.cc", |
| 17 "common/scoped_drm_types.h", | 18 "common/scoped_drm_types.h", |
| 18 "cursor_proxy_mojo.cc", | 19 "cursor_proxy_mojo.cc", |
| 19 "cursor_proxy_mojo.h", | 20 "cursor_proxy_mojo.h", |
| 20 "gpu/crtc_controller.cc", | 21 "gpu/crtc_controller.cc", |
| 21 "gpu/crtc_controller.h", | 22 "gpu/crtc_controller.h", |
| 22 "gpu/drm_buffer.cc", | 23 "gpu/drm_buffer.cc", |
| 23 "gpu/drm_buffer.h", | 24 "gpu/drm_buffer.h", |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 deps = [ | 171 deps = [ |
| 171 ":gbm", | 172 ":gbm", |
| 172 "//skia", | 173 "//skia", |
| 173 "//testing/gtest", | 174 "//testing/gtest", |
| 174 "//third_party/libdrm", | 175 "//third_party/libdrm", |
| 175 "//ui/gfx", | 176 "//ui/gfx", |
| 176 "//ui/ozone:platform", | 177 "//ui/ozone:platform", |
| 177 "//ui/ozone/common", | 178 "//ui/ozone/common", |
| 178 ] | 179 ] |
| 179 } | 180 } |
| OLD | NEW |