1{# Copyright © 2024 Google Inc. 2 SPDX-License-Identifier: MIT 3#} 4cc_shared_library( 5 name = "{{ name }}", 6 deps = [ 7 {%- for dep in deps %} 8 "{{ dep }}", 9 {%- endfor %} 10 ], 11 visibility = [ "//visibility:public" ], 12 {# Fuchsia Vulkan ICDs may not have shared c++ dependency #} 13 user_link_flags = ["-static-libstdc++"], 14) 15