xref: /aosp_15_r20/external/bazelbuild-rules_rust/examples/bindgen/simple/BUILD.bazel (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1*d4726bddSHONG Yifanload("@rules_cc//cc:defs.bzl", "cc_library")
2*d4726bddSHONG Yifan
3*d4726bddSHONG Yifanexports_files(
4*d4726bddSHONG Yifan    [
5*d4726bddSHONG Yifan        "simple.h",
6*d4726bddSHONG Yifan    ],
7*d4726bddSHONG Yifan    visibility = ["//bindgen:__pkg__"],
8*d4726bddSHONG Yifan)
9*d4726bddSHONG Yifan
10*d4726bddSHONG Yifancc_library(
11*d4726bddSHONG Yifan    name = "simple",
12*d4726bddSHONG Yifan    srcs = ["simple.cc"],
13*d4726bddSHONG Yifan    hdrs = ["simple.h"],
14*d4726bddSHONG Yifan    visibility = ["//bindgen:__pkg__"],
15*d4726bddSHONG Yifan)
16