blob: 24b29c46e7fabc65e09016aee76cc9f3a52b60de [file]
# Part of the Crubit project, under the Apache License v2.0 with LLVM
# Exceptions. See /LICENSE for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
load("//rs_bindings_from_cc/test:crubit_rust_test.bzl", "crubit_rust_test")
load("//rs_bindings_from_cc/test:test_bindings.bzl", "crubit_test_cc_library")
package(default_applicable_licenses = ["//:license"])
crubit_test_cc_library(
name = "string_view_apis",
hdrs = ["string_view_apis.h"],
)
crubit_rust_test(
name = "string_view",
srcs = ["test.rs"],
cc_deps = [
":string_view_apis",
"//support/cc_std",
],
)