Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(939)

Unified Diff: ui/ozone/platform/dri/BUILD.gn

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/ozone/platform/caca/scoped_caca_types.cc ('k') | ui/ozone/platform/dri/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/dri/BUILD.gn
diff --git a/ui/ozone/platform/dri/BUILD.gn b/ui/ozone/platform/dri/BUILD.gn
deleted file mode 100644
index b59ac71da3dbe37d4516f65c0698ffdbc5dfaac9..0000000000000000000000000000000000000000
--- a/ui/ozone/platform/dri/BUILD.gn
+++ /dev/null
@@ -1,146 +0,0 @@
-# Copyright 2014 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/pkg_config.gni")
-import("//ui/ozone/ozone.gni")
-
-pkg_config("libdrm") {
- packages = [ "libdrm" ]
-}
-
-source_set("dri_common") {
- sources = [
- "channel_observer.h",
- "crtc_controller.cc",
- "crtc_controller.h",
- "display_mode_dri.cc",
- "display_mode_dri.h",
- "display_snapshot_dri.cc",
- "display_snapshot_dri.h",
- "dri_console_buffer.cc",
- "dri_console_buffer.h",
- "dri_cursor.cc",
- "dri_cursor.h",
- "dri_buffer.cc",
- "dri_buffer.h",
- "dri_gpu_platform_support.cc",
- "dri_gpu_platform_support_.h",
- "dri_gpu_platform_support_host.cc",
- "dri_gpu_platform_support_host.h",
- "dri_surface.cc",
- "dri_surface.h",
- "dri_surface_factory.cc",
- "dri_surface_factory.h",
- "dri_util.cc",
- "dri_util.h",
- "dri_vsync_provider.cc",
- "dri_vsync_provider.h",
- "dri_window.cc",
- "dri_window.h",
- "dri_window_delegate.h",
- "dri_window_delegate_impl.cc",
- "dri_window_delegate_impl.h",
- "dri_window_delegate_manager.cc",
- "dri_window_delegate_manager.h",
- "dri_window_manager.cc",
- "dri_window_manager.h",
- "dri_wrapper.cc",
- "dri_wrapper.h",
- "hardware_display_controller.cc",
- "hardware_display_controller.h",
- "native_display_delegate_dri.cc",
- "native_display_delegate_dri.h",
- "overlay_plane.cc",
- "overlay_plane.h",
- "scoped_drm_types.cc",
- "scoped_drm_types.h",
- "screen_manager.cc",
- "screen_manager.h",
- "scanout_buffer.h",
- "virtual_terminal_manager.cc",
- "virtual_terminal_manager.h",
- ]
-
- deps = [
- "//base",
- "//skia",
- "//ipc",
- "//ui/base",
- "//ui/display/types",
- "//ui/events",
- "//ui/events/ozone:events_ozone_evdev",
- "//ui/gfx",
- "//ui/gfx/geometry",
- ]
-
- public_configs = [ ":libdrm" ]
-}
-
-if (ozone_platform_dri) {
- source_set("dri") {
- sources = [
- "ozone_platform_dri.cc",
- "ozone_platform_dri.h",
- ]
-
- deps = [
- ":dri_common",
- "//base",
- "//skia",
- "//ui/events/ozone:events_ozone_evdev",
- ]
- }
-
- source_set("dri_unittests") {
- testonly = true
- sources = [
- "dri_surface_factory_unittest.cc",
- "dri_surface_unittest.cc",
- "hardware_display_controller_unittest.cc",
- "screen_manager_unittest.cc",
- "test/mock_dri_wrapper.cc",
- "test/mock_dri_wrapper.h",
- ]
-
- deps = [
- ":dri_common",
- "//skia",
- "//testing/gtest",
- ]
- }
-}
-
-if (ozone_platform_gbm) {
- pkg_config("libgbm") {
- packages = [ "gbm" ]
- }
-
- source_set("gbm") {
- sources = [
- "gbm_buffer.cc",
- "gbm_buffer.h",
- "gbm_buffer_base.cc",
- "gbm_buffer_base.h",
- "gbm_surface.cc",
- "gbm_surface.h",
- "gbm_surfaceless.cc",
- "gbm_surfaceless.h",
- "gbm_surface_factory.cc",
- "gbm_surface_factory.h",
- "native_display_delegate_proxy.cc",
- "native_display_delegate_proxy.h",
- "ozone_platform_gbm.cc",
- "ozone_platform_gbm.h",
- ]
-
- deps = [
- ":dri_common",
- "//base",
- "//skia",
- "//ui/events/ozone:events_ozone_evdev",
- ]
-
- public_configs = [ ":libgbm" ]
- }
-}
« no previous file with comments | « ui/ozone/platform/caca/scoped_caca_types.cc ('k') | ui/ozone/platform/dri/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698