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