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