| 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 29 matching lines...) Expand all  Loading... | 
|   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:remote_shell_protocol", |   42     "//third_party/wayland-protocols:remote_shell_protocol", | 
|   43     "//third_party/wayland-protocols:secure_output_protocol", |   43     "//third_party/wayland-protocols:secure_output_protocol", | 
|   44     "//third_party/wayland-protocols:stylus_protocol", |   44     "//third_party/wayland-protocols:stylus_protocol", | 
|   45     "//third_party/wayland-protocols:viewporter_protocol", |   45     "//third_party/wayland-protocols:viewporter_protocol", | 
|   46     "//third_party/wayland-protocols:vsync_feedback_protocol", |   46     "//third_party/wayland-protocols:vsync_feedback_protocol", | 
|   47     "//third_party/wayland-protocols:xdg_shell_protocol", |   47     "//third_party/wayland-protocols:xdg_shell_protocol", | 
|   48     "//ui/aura", |   48     "//ui/aura", | 
|   49     "//ui/base", |   49     "//ui/base", | 
 |   50     "//ui/display/manager", | 
|   50     "//ui/events:dom_keycode_converter", |   51     "//ui/events:dom_keycode_converter", | 
|   51     "//ui/events:events_base", |   52     "//ui/events:events_base", | 
|   52     "//ui/views", |   53     "//ui/views", | 
|   53   ] |   54   ] | 
|   54  |   55  | 
|   55   if (use_ozone) { |   56   if (use_ozone) { | 
|   56     deps += [ |   57     deps += [ | 
|   57       "//third_party/mesa:wayland_drm_protocol", |   58       "//third_party/mesa:wayland_drm_protocol", | 
|   58       "//third_party/wayland-protocols:linux_dmabuf_protocol", |   59       "//third_party/wayland-protocols:linux_dmabuf_protocol", | 
|   59     ] |   60     ] | 
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   99  |  100  | 
|  100   if (ozone_platform_gbm) { |  101   if (ozone_platform_gbm) { | 
|  101     configs += [ |  102     configs += [ | 
|  102       ":libdrm", |  103       ":libdrm", | 
|  103       "//ui/gl:gl_config", |  104       "//ui/gl:gl_config", | 
|  104     ] |  105     ] | 
|  105     defines = [ "OZONE_PLATFORM_GBM" ] |  106     defines = [ "OZONE_PLATFORM_GBM" ] | 
|  106     deps += [ "//third_party/minigbm" ] |  107     deps += [ "//third_party/minigbm" ] | 
|  107   } |  108   } | 
|  108 } |  109 } | 
| OLD | NEW |