| 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/ozone/ozone.gni") | 7 import("//ui/ozone/ozone.gni") |
| 8 | 8 |
| 9 if (use_xkbcommon) { | 9 if (use_xkbcommon) { |
| 10 pkg_config("xkbcommon") { | 10 pkg_config("xkbcommon") { |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 executable("wayland_motion_events") { | 86 executable("wayland_motion_events") { |
| 87 sources = [ | 87 sources = [ |
| 88 "clients/motion_events.cc", | 88 "clients/motion_events.cc", |
| 89 ] | 89 ] |
| 90 | 90 |
| 91 deps = [ | 91 deps = [ |
| 92 "//base", | 92 "//base", |
| 93 "//skia", | 93 "//skia", |
| 94 "//third_party/wayland:wayland_client", | 94 "//third_party/wayland:wayland_client", |
| 95 "//third_party/wayland-protocols:linux_dmabuf_protocol", | 95 "//third_party/wayland-protocols:linux_dmabuf_protocol", |
| 96 "//third_party/wayland-protocols:linux_explicit_synchronization_protocol", |
| 96 "//ui/gfx/geometry", | 97 "//ui/gfx/geometry", |
| 97 "//ui/gl", | 98 "//ui/gl", |
| 98 "//ui/gl/init", | 99 "//ui/gl/init", |
| 99 ] | 100 ] |
| 100 | 101 |
| 101 if (ozone_platform_gbm) { | 102 if (ozone_platform_gbm) { |
| 102 configs += [ | 103 configs += [ |
| 103 ":libdrm", | 104 ":libdrm", |
| 104 "//ui/gl:gl_config", | 105 "//ui/gl:gl_config", |
| 105 ] | 106 ] |
| 106 defines = [ "OZONE_PLATFORM_GBM" ] | 107 defines = [ "OZONE_PLATFORM_GBM" ] |
| 107 deps += [ "//third_party/minigbm" ] | 108 deps += [ "//third_party/minigbm" ] |
| 108 } | 109 } |
| 109 } | 110 } |
| OLD | NEW |