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 16 matching lines...) Expand all Loading... |
27 ] | 27 ] |
28 | 28 |
29 defines = [ "EXO_IMPLEMENTATION" ] | 29 defines = [ "EXO_IMPLEMENTATION" ] |
30 | 30 |
31 deps = [ | 31 deps = [ |
32 "//ash", | 32 "//ash", |
33 "//ash/public/cpp", | 33 "//ash/public/cpp", |
34 "//base", | 34 "//base", |
35 "//components/exo", | 35 "//components/exo", |
36 "//device/gamepad", | 36 "//device/gamepad", |
37 "//ipc:ipc", | |
38 "//skia", | 37 "//skia", |
39 "//third_party/wayland:wayland_server", | 38 "//third_party/wayland:wayland_server", |
40 "//third_party/wayland-protocols:alpha_compositing_protocol", | 39 "//third_party/wayland-protocols:alpha_compositing_protocol", |
41 "//third_party/wayland-protocols:gaming_input_protocol", | 40 "//third_party/wayland-protocols:gaming_input_protocol", |
42 "//third_party/wayland-protocols:remote_shell_protocol", | 41 "//third_party/wayland-protocols:remote_shell_protocol", |
43 "//third_party/wayland-protocols:secure_output_protocol", | 42 "//third_party/wayland-protocols:secure_output_protocol", |
44 "//third_party/wayland-protocols:stylus_protocol", | 43 "//third_party/wayland-protocols:stylus_protocol", |
45 "//third_party/wayland-protocols:viewporter_protocol", | 44 "//third_party/wayland-protocols:viewporter_protocol", |
46 "//third_party/wayland-protocols:vsync_feedback_protocol", | 45 "//third_party/wayland-protocols:vsync_feedback_protocol", |
47 "//third_party/wayland-protocols:xdg_shell_protocol", | 46 "//third_party/wayland-protocols:xdg_shell_protocol", |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 | 98 |
100 if (ozone_platform_gbm) { | 99 if (ozone_platform_gbm) { |
101 configs += [ | 100 configs += [ |
102 ":libdrm", | 101 ":libdrm", |
103 "//ui/gl:gl_config", | 102 "//ui/gl:gl_config", |
104 ] | 103 ] |
105 defines = [ "OZONE_PLATFORM_GBM" ] | 104 defines = [ "OZONE_PLATFORM_GBM" ] |
106 deps += [ "//third_party/minigbm" ] | 105 deps += [ "//third_party/minigbm" ] |
107 } | 106 } |
108 } | 107 } |
OLD | NEW |