summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu Liu <yudiliu@google.com>2022-11-12 10:58:43 -0800
committerYu Liu <yudiliu@google.com>2022-11-17 15:41:43 -0800
commit49d00260bc3f6f39d2283b41180e4e3a2da3361f (patch)
tree512cd5eaa91c49129d0f9f9ea78ee429c844724a
parent03512115099c3d80ffb6c4e3de323dd5f3f60693 (diff)
downloadplatform-49d00260bc3f6f39d2283b41180e4e3a2da3361f.tar.gz
Support abi check in bazel.
Bug: 253498204 Test: Manual and unit test. Change-Id: I76ae29d63d2678e3fe72e9ac6649240ea92f21e1
-rw-r--r--BUILD.bazel21
1 files changed, 21 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
new file mode 100644
index 0000000..43743cf
--- /dev/null
+++ b/BUILD.bazel
@@ -0,0 +1,21 @@
+"""Copyright (C) 2022 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.
+"""
+
+package(default_visibility = ["//visibility:public"])
+
+filegroup(
+ name = "bp2build_all_srcs",
+ srcs = glob(["**/*"]),
+)