14 lines
334 B
Text
14 lines
334 B
Text
{# Copyright © 2024 Google Inc.
|
|
SPDX-License-Identifier: MIT
|
|
#}
|
|
cc_shared_library(
|
|
name = "{{ name }}",
|
|
deps = [
|
|
{%- for dep in deps %}
|
|
"{{ dep }}",
|
|
{%- endfor %}
|
|
],
|
|
visibility = [ "//visibility:public" ],
|
|
{# Fuchsia Vulkan ICDs may not have shared c++ dependency #}
|
|
user_link_flags = ["-static-libstdc++"],
|
|
)
|