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 pkg_config("libdrm") { | 8 pkg_config("libdrm") { |
9 packages = [ "libdrm" ] | 9 packages = [ "libdrm" ] |
10 } | 10 } |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 "gbm_buffer.cc", | 133 "gbm_buffer.cc", |
134 "gbm_buffer.h", | 134 "gbm_buffer.h", |
135 "gbm_buffer_base.cc", | 135 "gbm_buffer_base.cc", |
136 "gbm_buffer_base.h", | 136 "gbm_buffer_base.h", |
137 "gbm_surface.cc", | 137 "gbm_surface.cc", |
138 "gbm_surface.h", | 138 "gbm_surface.h", |
139 "gbm_surfaceless.cc", | 139 "gbm_surfaceless.cc", |
140 "gbm_surfaceless.h", | 140 "gbm_surfaceless.h", |
141 "gbm_surface_factory.cc", | 141 "gbm_surface_factory.cc", |
142 "gbm_surface_factory.h", | 142 "gbm_surface_factory.h", |
| 143 "gbm_wrapper.cc", |
| 144 "gbm_wrapper.h", |
143 "ozone_platform_gbm.cc", | 145 "ozone_platform_gbm.cc", |
144 "ozone_platform_gbm.h", | 146 "ozone_platform_gbm.h", |
145 ] | 147 ] |
146 | 148 |
147 deps = [ | 149 deps = [ |
148 ":dri_common", | 150 ":dri_common", |
149 "//base", | 151 "//base", |
150 "//skia", | 152 "//skia", |
151 "//ui/events/ozone:events_ozone_evdev", | 153 "//ui/events/ozone:events_ozone_evdev", |
152 "//ui/events/ozone:events_ozone_layout", | 154 "//ui/events/ozone:events_ozone_layout", |
153 ] | 155 ] |
154 | 156 |
155 public_configs = [ ":libgbm" ] | 157 public_configs = [ ":libgbm" ] |
156 } | 158 } |
157 } | 159 } |
OLD | NEW |