xref: /aosp_15_r20/external/skia/bazel/external/fontconfig/BUILD.bazel (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1# We currently do not build fontconfig from source, but dynamically link against a precompiled
2# version. This precompiled version is downloaded as part of the hermetic toolchain.
3#
4# Instead of inlining this linkopts setting, we have this as its own rule so we can link
5# against a different target when rolling into G3.
6cc_library(
7    name = "fontconfig",
8    linkopts = ["-lfontconfig"],
9    visibility = ["//:__subpackages__"],
10)
11