summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2024-03-28 17:04:20 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-03-28 17:04:20 +0000
commitfed9fb3ef0fd3b0e2928797933df0c8117b276a4 (patch)
treec91a4e1e0331fa655759ba0e31f40198eb7f2143
parent9c39311b68019eae34a7d094c1570682da3c15e2 (diff)
parent0fe2e000716b3152e4b26d0f3b5523bb517ba9a7 (diff)
downloadzlib-fed9fb3ef0fd3b0e2928797933df0c8117b276a4.tar.gz
Merge "kleaf: Add pkg_files for TEST_MAPPING." into main
-rw-r--r--BUILD.bazel22
1 files changed, 22 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
new file mode 100644
index 0000000..f0fc0f9
--- /dev/null
+++ b/BUILD.bazel
@@ -0,0 +1,22 @@
+# Copyright (C) 2024 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+load("@rules_pkg//pkg:mappings.bzl", "pkg_files")
+
+pkg_files(
+ name = "test_mappings",
+ srcs = ["TEST_MAPPING"],
+ prefix = package_name(),
+ visibility = ["//kernel/tests/test_mappings:__pkg__"],
+)