| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//build/config/ui.gni") |
| 5 import("//ui/ozone/ozone.gni") |
| 6 |
| 7 assert(use_x11 || ozone_platform_x11) |
| 4 | 8 |
| 5 component("x") { | 9 component("x") { |
| 6 output_name = "ui_base_x" | 10 output_name = "ui_base_x" |
| 7 | 11 |
| 8 sources = [ | 12 sources = [ |
| 9 "ui_base_x_export.h", | 13 "ui_base_x_export.h", |
| 10 "x11_menu_list.cc", | 14 "x11_menu_list.cc", |
| 11 "x11_menu_list.h", | 15 "x11_menu_list.h", |
| 12 "x11_util.cc", | 16 "x11_util.cc", |
| 13 "x11_util.h", | 17 "x11_util.h", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 24 "//base", | 28 "//base", |
| 25 "//base:i18n", | 29 "//base:i18n", |
| 26 "//skia", | 30 "//skia", |
| 27 "//ui/events", | 31 "//ui/events", |
| 28 "//ui/events/devices/x11", | 32 "//ui/events/devices/x11", |
| 29 "//ui/events/keycodes:x11", | 33 "//ui/events/keycodes:x11", |
| 30 "//ui/gfx", | 34 "//ui/gfx", |
| 31 "//ui/gfx/x", | 35 "//ui/gfx/x", |
| 32 ] | 36 ] |
| 33 } | 37 } |
| OLD | NEW |