# Copyright 2016 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. import("//build/config/linux/gtk/gtk.gni") import("//build/config/ozone.gni") import("//build/config/ui.gni") assert(use_x11 || ozone_platform_x11) component("x") { output_name = "ui_base_x" sources = [ "selection_utils.cc", "selection_utils.h", "x11_cursor.cc", "x11_cursor.h", "x11_cursor_factory.cc", "x11_cursor_factory.h", "x11_cursor_loader.cc", "x11_cursor_loader.h", "x11_desktop_window_move_client.cc", "x11_desktop_window_move_client.h", "x11_display_manager.cc", "x11_display_manager.h", "x11_display_util.cc", "x11_display_util.h", "x11_idle_query.cc", "x11_idle_query.h", "x11_menu_list.cc", "x11_menu_list.h", "x11_menu_registrar.cc", "x11_menu_registrar.h", "x11_move_loop.h", "x11_move_loop_delegate.h", "x11_pointer_grab.cc", "x11_pointer_grab.h", "x11_screensaver_window_finder.cc", "x11_screensaver_window_finder.h", "x11_shm_image_pool.cc", "x11_shm_image_pool.h", "x11_software_bitmap_presenter.cc", "x11_software_bitmap_presenter.h", "x11_topmost_window_finder.cc", "x11_topmost_window_finder.h", "x11_ui_thread.cc", "x11_ui_thread.h", "x11_user_input_monitor.cc", "x11_user_input_monitor.h", "x11_util.cc", "x11_util.h", "x11_whole_screen_move_loop.cc", "x11_whole_screen_move_loop.h", "x11_window.cc", "x11_window.h", "x11_workspace_handler.cc", "x11_workspace_handler.h", ] defines = [ "IS_UI_BASE_X_IMPL" ] deps = [ "//base", "//base:i18n", "//net", "//skia", "//ui/base:features", "//ui/base:hit_test", "//ui/base:wm_role_names", "//ui/base/clipboard:clipboard_types", "//ui/base/cursor:cursor_base", "//ui/base/cursor:theme_manager", "//ui/base/cursor/mojom:cursor_type", "//ui/display/util", "//ui/events", "//ui/events/devices/x11", "//ui/events/keycodes:x11", "//ui/events/platform/x11", "//ui/events/x:x", "//ui/gfx", "//ui/gfx/geometry", "//ui/gfx/x", "//ui/platform_window/common", ] if ((is_linux || is_chromeos) && !use_qt) { sources += [ "selection_owner.cc", "selection_owner.h", "x11_drag_context.cc", "x11_drag_context.h", "x11_drag_drop_client.cc", "x11_drag_drop_client.h", "x11_os_exchange_data_provider.cc", "x11_os_exchange_data_provider.h", ] deps += [ "//ui/base:data_exchange", "//ui/base/dragdrop/file_info", ] } } source_set("gl") { sources = [ "x11_gl_egl_utility.cc", "x11_gl_egl_utility.h", ] configs += [ "//third_party/khronos:khronos_headers" ] deps = [ ":x", "//base", "//third_party/angle:includes", "//ui/gfx/x", "//ui/gl", ] } source_set("test_support") { testonly = true sources = [ "test/x11_property_change_waiter.cc", "test/x11_property_change_waiter.h", "test/x11_ui_controls_test_helper.cc", "test/x11_ui_controls_test_helper.h", ] deps = [ ":x", "//ui/base:test_support", "//ui/events:platform_event", "//ui/events:test_support", "//ui/events/platform/x11", "//ui/gfx/x", ] } source_set("unittests") { testonly = true sources = [ "x11_cursor_factory_unittest.cc", "x11_cursor_loader_unittest.cc", ] deps = [ ":x", "//base", "//skia", "//testing/gtest", "//ui/gfx/geometry", ] }