Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_rust
/
aa3761fb1db460b25a0734328644c18e480df345
/
.
/
examples
/
bindgen
/
simple
/
BUILD.bazel
blob: a83e023dcd292494c26b39e5aa5fe4698b6c6def [
file
] [
log
] [
blame
]
load
(
"@rules_cc//cc:defs.bzl"
,
"cc_library"
)
exports_files
(
[
"simple.h"
,
],
visibility
=
[
"//bindgen:__pkg__"
],
)
cc_library
(
name
=
"simple"
,
srcs
=
[
"simple.cc"
],
hdrs
=
[
"simple.h"
],
visibility
=
[
"//bindgen:__pkg__"
],
)