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

Unified Diff: content/common/BUILD.gn

Issue 1134993003: ozone: Implement zero/one-copy texture for Ozone GBM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: not-leak USE_OZONE_GBM, GetSupportedGpuMemoryBufferConfigurations from ozone, return handle Created 5 years, 7 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
Index: content/common/BUILD.gn
diff --git a/content/common/BUILD.gn b/content/common/BUILD.gn
index 25627f1d1cc6b2652f9a9981cf34228e34236f4e..af822818a7a0dc6c5cad90fc896c1ce9610cfed4 100644
--- a/content/common/BUILD.gn
+++ b/content/common/BUILD.gn
@@ -4,6 +4,7 @@
import("//build/config/features.gni")
import("//build/config/ui.gni")
+import("//build/config/linux/pkg_config.gni")
import("//content/common/common.gni")
import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
@@ -265,6 +266,10 @@ source_set("common") {
"//ui/ozone:ozone_base",
"//ui/ozone/gpu",
]
+ pkg_config("libdrm") {
+ packages = [ "libdrm" ]
+ }
+ public_configs = [ ":libdrm" ]
} else {
sources -= [
"cursors/webcursor_ozone.cc",

Powered by Google App Engine
This is Rietveld 408576698