blob: 8b1f3e20fc24a7ef47266a10b2630c6e78051121 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
##########################################
# Though under //zircon, this build file #
# is meant to be used in the Fuchsia GN #
# build. #
# See fxb/36548. #
##########################################
assert(!defined(zx) || zx != "/",
"This file can only be used in the Fuchsia GN build.")
import("//build/unification/zx_library.gni")
zx_library("framebuffer") {
sdk = "static"
sdk_headers = [ "lib/framebuffer/framebuffer.h" ]
sources = [ "framebuffer.cc" ]
deps = [
"//zircon/public/lib/fbl",
"//zircon/public/lib/fdio",
"//zircon/public/lib/fdio-caller",
"//zircon/public/lib/fidl",
"//zircon/public/lib/fzl",
"//zircon/public/lib/image-format",
"//zircon/public/lib/image-format-llcpp",
"//zircon/public/lib/zx",
"//zircon/system/banjo/ddk.protocol.display.controller",
"//zircon/system/fidl/fuchsia-hardware-display:llcpp",
"//zircon/system/fidl/fuchsia-sysmem:llcpp",
]
}