| 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/base/ui_features.gni") | 7 import("//ui/base/ui_features.gni") |
| 8 import("//ui/ozone/ozone.gni") | 8 import("//ui/ozone/ozone.gni") |
| 9 | 9 |
| 10 if (use_xkbcommon) { | 10 if (use_xkbcommon) { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 "//device/gamepad", | 37 "//device/gamepad", |
| 38 "//skia", | 38 "//skia", |
| 39 "//third_party/wayland:wayland_server", | 39 "//third_party/wayland:wayland_server", |
| 40 "//third_party/wayland-protocols:alpha_compositing_protocol", | 40 "//third_party/wayland-protocols:alpha_compositing_protocol", |
| 41 "//third_party/wayland-protocols:gaming_input_protocol", | 41 "//third_party/wayland-protocols:gaming_input_protocol", |
| 42 "//third_party/wayland-protocols:keyboard_configuration_protocol", | 42 "//third_party/wayland-protocols:keyboard_configuration_protocol", |
| 43 "//third_party/wayland-protocols:presentation_time_protocol", | 43 "//third_party/wayland-protocols:presentation_time_protocol", |
| 44 "//third_party/wayland-protocols:remote_shell_protocol", | 44 "//third_party/wayland-protocols:remote_shell_protocol", |
| 45 "//third_party/wayland-protocols:secure_output_protocol", | 45 "//third_party/wayland-protocols:secure_output_protocol", |
| 46 "//third_party/wayland-protocols:stylus_protocol", | 46 "//third_party/wayland-protocols:stylus_protocol", |
| 47 "//third_party/wayland-protocols:stylus_tools_protocol", |
| 47 "//third_party/wayland-protocols:viewporter_protocol", | 48 "//third_party/wayland-protocols:viewporter_protocol", |
| 48 "//third_party/wayland-protocols:vsync_feedback_protocol", | 49 "//third_party/wayland-protocols:vsync_feedback_protocol", |
| 49 "//third_party/wayland-protocols:xdg_shell_protocol", | 50 "//third_party/wayland-protocols:xdg_shell_protocol", |
| 50 "//ui/aura", | 51 "//ui/aura", |
| 51 "//ui/base", | 52 "//ui/base", |
| 52 "//ui/display/manager", | 53 "//ui/display/manager", |
| 53 "//ui/events:dom_keycode_converter", | 54 "//ui/events:dom_keycode_converter", |
| 54 "//ui/events:events_base", | 55 "//ui/events:events_base", |
| 55 "//ui/views", | 56 "//ui/views", |
| 56 "//ui/wm:wm", | 57 "//ui/wm:wm", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 ] | 184 ] |
| 184 | 185 |
| 185 configs += [ | 186 configs += [ |
| 186 ":libdrm", | 187 ":libdrm", |
| 187 "//ui/gl:gl_config", | 188 "//ui/gl:gl_config", |
| 188 ] | 189 ] |
| 189 defines = [ "OZONE_PLATFORM_GBM" ] | 190 defines = [ "OZONE_PLATFORM_GBM" ] |
| 190 deps += [ "//third_party/minigbm" ] | 191 deps += [ "//third_party/minigbm" ] |
| 191 } | 192 } |
| 192 } | 193 } |
| OLD | NEW |