mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 08:16:09 +03:00
29 lines
622 B
Plaintext
29 lines
622 B
Plaintext
|
# Copyright 2018 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/ui.gni")
|
||
|
import("//ui/ozone/ozone.gni")
|
||
|
|
||
|
assert(ozone_platform_gbm)
|
||
|
|
||
|
source_set("linux") {
|
||
|
sources = [
|
||
|
"drm_util_linux.cc",
|
||
|
"drm_util_linux.h",
|
||
|
"gbm_buffer.h",
|
||
|
"gbm_device.h",
|
||
|
"gbm_wrapper.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base:base",
|
||
|
"//third_party/libdrm",
|
||
|
"//third_party/minigbm",
|
||
|
"//ui/gfx:buffer_types",
|
||
|
"//ui/gfx:memory_buffer",
|
||
|
"//ui/gfx/geometry:geometry",
|
||
|
"//ui/ozone:ozone_base",
|
||
|
]
|
||
|
}
|