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

Side by Side Diff: ui/ozone/platform/dri/BUILD.gn

Issue 409163004: ozone: Fix GN build for ozone_egl_demo, ozone_unittests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove empty file Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("dri_common") {
6 sources = [
7 "chromeos/display_mode_dri.cc",
8 "chromeos/display_mode_dri.h",
9 "chromeos/display_snapshot_dri.cc",
10 "chromeos/display_snapshot_dri.h",
11 "chromeos/native_display_delegate_dri.cc",
12 "chromeos/native_display_delegate_dri.h",
13 "cursor_factory_evdev_dri.cc",
14 "cursor_factory_evdev_dri.h",
15 "dri_console_buffer.cc",
16 "dri_console_buffer.h",
17 "dri_buffer.cc",
18 "dri_buffer.h",
19 "dri_surface.cc",
20 "dri_surface.h",
21 "dri_surface_factory.cc",
22 "dri_surface_factory.h",
23 "dri_util.cc",
24 "dri_util.h",
25 "dri_vsync_provider.cc",
26 "dri_vsync_provider.h",
27 "dri_window.cc",
28 "dri_window.h",
29 "dri_wrapper.cc",
30 "dri_wrapper.h",
31 "hardware_display_controller.cc",
32 "hardware_display_controller.h",
33 "scoped_drm_types.cc",
34 "scoped_drm_types.h",
35 "screen_manager.cc",
36 "screen_manager.h",
37 "scanout_buffer.h",
38 "virtual_terminal_manager.cc",
39 "virtual_terminal_manager.h",
40 ]
41
42 deps = [
43 "//base",
44 "//skia",
45 "//ipc",
46 "//ui/base",
47 "//ui/display/types",
48 "//ui/events",
49 "//ui/events/ozone:events_ozone_evdev",
50 "//ui/gfx",
51 "//ui/gfx/geometry",
52 ]
53
54 direct_dependent_configs = [
55 "//build/config/linux:libdrm",
56 ]
57 }
58
59 source_set("dri") {
60 sources = [
61 "ozone_platform_dri.cc",
62 "ozone_platform_dri.h",
63 ]
64
65 deps = [
66 ":dri_common",
67 "//base",
68 "//skia",
69 "//ui/events/ozone:events_ozone_evdev",
70 ]
71 }
72
73 source_set("dri_unittests") {
74 sources = [
75 "dri_surface_factory_unittest.cc",
76 "dri_surface_unittest.cc",
77 "hardware_display_controller_unittest.cc",
78 "screen_manager_unittest.cc",
79 "test/mock_dri_wrapper.cc",
80 "test/mock_dri_wrapper.h",
81 ]
82
83 deps = [
84 ":dri_common",
85 "//skia",
86 "//testing/gtest",
87 ]
88 }
89
90 source_set("gbm") {
91 sources = [
92 "chromeos/display_message_handler.cc",
93 "chromeos/display_message_handler.h",
94 "chromeos/native_display_delegate_proxy.cc",
95 "chromeos/native_display_delegate_proxy.h",
96 "gbm_buffer.cc",
97 "gbm_buffer.h",
98 "gbm_buffer_base.cc",
99 "gbm_buffer_base.h",
100 "gbm_surface.cc",
101 "gbm_surface.h",
102 "gbm_surfaceless.cc",
103 "gbm_surfaceless.h",
104 "gbm_surface_factory.cc",
105 "gbm_surface_factory.h",
106 "gpu_platform_support_gbm.cc",
107 "gpu_platform_support_gbm.h",
108 "gpu_platform_support_host_gbm.cc",
109 "gpu_platform_support_host_gbm.h",
110 "ozone_platform_gbm.cc",
111 "ozone_platform_gbm.h",
112 ]
113
114 deps = [
115 ":dri_common",
116 "//base",
117 "//skia",
118 "//ui/events/ozone:events_ozone_evdev",
119 ]
120
121 direct_dependent_configs = [
122 "//build/config/linux:gbm",
123 ]
124 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698