| 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 | 7 |
| 8 if (use_xkbcommon) { | 8 if (use_xkbcommon) { |
| 9 pkg_config("xkbcommon") { | 9 pkg_config("xkbcommon") { |
| 10 packages = [ "xkbcommon" ] | 10 packages = [ "xkbcommon" ] |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 defines = [ "EXO_IMPLEMENTATION" ] | 28 defines = [ "EXO_IMPLEMENTATION" ] |
| 29 | 29 |
| 30 deps = [ | 30 deps = [ |
| 31 "//ash", | 31 "//ash", |
| 32 "//base", | 32 "//base", |
| 33 "//components/exo", | 33 "//components/exo", |
| 34 "//ipc:ipc", | 34 "//ipc:ipc", |
| 35 "//skia", | 35 "//skia", |
| 36 "//third_party/wayland:wayland_server", | 36 "//third_party/wayland:wayland_server", |
| 37 "//third_party/wayland-protocols:scaler_protocol", | 37 "//third_party/wayland-protocols:scaler_protocol", |
| 38 "//third_party/wayland-protocols:secure_output_protocol", |
| 38 "//third_party/wayland-protocols:xdg_shell_protocol", | 39 "//third_party/wayland-protocols:xdg_shell_protocol", |
| 39 "//ui/events:dom_keycode_converter", | 40 "//ui/events:dom_keycode_converter", |
| 40 "//ui/events:events_base", | 41 "//ui/events:events_base", |
| 41 "//ui/views", | 42 "//ui/views", |
| 42 ] | 43 ] |
| 43 | 44 |
| 44 if (use_ozone) { | 45 if (use_ozone) { |
| 45 deps += [ | 46 deps += [ |
| 46 "//third_party/mesa:wayland_drm_protocol", | 47 "//third_party/mesa:wayland_drm_protocol", |
| 47 "//third_party/wayland-protocols:linux_dmabuf_protocol", | 48 "//third_party/wayland-protocols:linux_dmabuf_protocol", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 63 ] | 64 ] |
| 64 | 65 |
| 65 deps = [ | 66 deps = [ |
| 66 ":wayland", | 67 ":wayland", |
| 67 "//base", | 68 "//base", |
| 68 "//components/exo", | 69 "//components/exo", |
| 69 "//testing/gtest", | 70 "//testing/gtest", |
| 70 "//third_party/wayland:wayland_client", | 71 "//third_party/wayland:wayland_client", |
| 71 ] | 72 ] |
| 72 } | 73 } |
| OLD | NEW |