OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//ui/base/ui_features.gni") | 7 import("//ui/base/ui_features.gni") |
8 import("//ui/ozone/ozone.gni") | 8 import("//ui/ozone/ozone.gni") |
9 | 9 |
10 if (use_xkbcommon) { | 10 if (use_xkbcommon) { |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 "//third_party/wayland-protocols:presentation_time_protocol", | 100 "//third_party/wayland-protocols:presentation_time_protocol", |
101 "//ui/gl", | 101 "//ui/gl", |
102 "//ui/gl/init", | 102 "//ui/gl/init", |
103 ] | 103 ] |
104 if (ozone_platform_gbm) { | 104 if (ozone_platform_gbm) { |
105 configs += [ | 105 configs += [ |
106 ":libdrm", | 106 ":libdrm", |
107 "//ui/gl:gl_config", | 107 "//ui/gl:gl_config", |
108 ] | 108 ] |
109 defines = [ "OZONE_PLATFORM_GBM" ] | 109 defines = [ "OZONE_PLATFORM_GBM" ] |
110 deps += [ "//third_party/minigbm" ] | 110 deps += [ |
| 111 "//third_party/minigbm", |
| 112 "//ui/ozone", |
| 113 ] |
111 } | 114 } |
112 } | 115 } |
113 | 116 |
114 executable("wayland_rects_client") { | 117 executable("wayland_rects_client") { |
115 sources = [ | 118 sources = [ |
116 "clients/rects.cc", | 119 "clients/rects.cc", |
117 ] | 120 ] |
118 | 121 |
119 deps = [ | 122 deps = [ |
120 ":client_lib", | 123 ":client_lib", |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 ] | 183 ] |
181 | 184 |
182 configs += [ | 185 configs += [ |
183 ":libdrm", | 186 ":libdrm", |
184 "//ui/gl:gl_config", | 187 "//ui/gl:gl_config", |
185 ] | 188 ] |
186 defines = [ "OZONE_PLATFORM_GBM" ] | 189 defines = [ "OZONE_PLATFORM_GBM" ] |
187 deps += [ "//third_party/minigbm" ] | 190 deps += [ "//third_party/minigbm" ] |
188 } | 191 } |
189 } | 192 } |
OLD | NEW |