blob: 8b032271800d140e8d5612c14e898f03828fe3ab [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.
config("font") {
defines = [ "GFX_HAVE_FONT" ]
}
library("gfx") {
sources = [
"gfx.c",
]
configs += [ "$zx/public/gn/config:visibility_hidden" ]
public_configs = [ ":font" ]
deps = [
"$zx/system/ulib/zircon",
]
}
library("gfx-nofont") {
sdk = "source"
sdk_headers = [ "gfx/gfx.h" ]
sources = [
"gfx.c",
]
configs += [ "$zx/public/gn/config:visibility_hidden" ]
deps = [
"$zx/system/ulib/zircon",
]
}