| 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 18 matching lines...) Expand all Loading... |
| 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:alpha_compositing_protocol", | 37 "//third_party/wayland-protocols:alpha_compositing_protocol", |
| 38 "//third_party/wayland-protocols:remote_shell_protocol", | 38 "//third_party/wayland-protocols:remote_shell_protocol", |
| 39 "//third_party/wayland-protocols:scaler_protocol", | |
| 40 "//third_party/wayland-protocols:secure_output_protocol", | 39 "//third_party/wayland-protocols:secure_output_protocol", |
| 41 "//third_party/wayland-protocols:viewporter_protocol", | 40 "//third_party/wayland-protocols:viewporter_protocol", |
| 42 "//third_party/wayland-protocols:xdg_shell_protocol", | 41 "//third_party/wayland-protocols:xdg_shell_protocol", |
| 43 "//ui/aura:aura", | 42 "//ui/aura:aura", |
| 44 "//ui/events:dom_keycode_converter", | 43 "//ui/events:dom_keycode_converter", |
| 45 "//ui/events:events_base", | 44 "//ui/events:events_base", |
| 46 "//ui/views", | 45 "//ui/views", |
| 47 ] | 46 ] |
| 48 | 47 |
| 49 if (use_ozone) { | 48 if (use_ozone) { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 69 ] | 68 ] |
| 70 | 69 |
| 71 deps = [ | 70 deps = [ |
| 72 ":wayland", | 71 ":wayland", |
| 73 "//base", | 72 "//base", |
| 74 "//components/exo", | 73 "//components/exo", |
| 75 "//testing/gtest", | 74 "//testing/gtest", |
| 76 "//third_party/wayland:wayland_client", | 75 "//third_party/wayland:wayland_client", |
| 77 ] | 76 ] |
| 78 } | 77 } |
| OLD | NEW |