OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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("//ui/ozone/ozone.gni") | 6 import("//ui/ozone/ozone.gni") |
7 | 7 |
8 pkg_config("libdrm") { | 8 pkg_config("libdrm") { |
9 packages = [ "libdrm" ] | 9 packages = [ "libdrm" ] |
10 } | 10 } |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 "//skia", | 69 "//skia", |
70 "//ipc", | 70 "//ipc", |
71 "//ui/base", | 71 "//ui/base", |
72 "//ui/display/types", | 72 "//ui/display/types", |
73 "//ui/events", | 73 "//ui/events", |
74 "//ui/events/ozone:events_ozone_evdev", | 74 "//ui/events/ozone:events_ozone_evdev", |
75 "//ui/gfx", | 75 "//ui/gfx", |
76 "//ui/gfx/geometry", | 76 "//ui/gfx/geometry", |
77 ] | 77 ] |
78 | 78 |
79 public_configs = [ | 79 public_configs = [ ":libdrm" ] |
80 ":libdrm", | |
81 ] | |
82 } | 80 } |
83 | 81 |
84 if (ozone_platform_dri) { | 82 if (ozone_platform_dri) { |
85 source_set("dri") { | 83 source_set("dri") { |
86 sources = [ | 84 sources = [ |
87 "ozone_platform_dri.cc", | 85 "ozone_platform_dri.cc", |
88 "ozone_platform_dri.h", | 86 "ozone_platform_dri.h", |
89 ] | 87 ] |
90 | 88 |
91 deps = [ | 89 deps = [ |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 "ozone_platform_gbm.h", | 134 "ozone_platform_gbm.h", |
137 ] | 135 ] |
138 | 136 |
139 deps = [ | 137 deps = [ |
140 ":dri_common", | 138 ":dri_common", |
141 "//base", | 139 "//base", |
142 "//skia", | 140 "//skia", |
143 "//ui/events/ozone:events_ozone_evdev", | 141 "//ui/events/ozone:events_ozone_evdev", |
144 ] | 142 ] |
145 | 143 |
146 public_configs = [ | 144 public_configs = [ ":libgbm" ] |
147 ":libgbm", | |
148 ] | |
149 } | 145 } |
150 } | 146 } |
OLD | NEW |