summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu Liu <yudiliu@google.com>2022-11-30 18:50:46 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-11-30 18:50:46 +0000
commit3b7e6ec180b042e7a6cd69162d08deff7dc43e77 (patch)
treee23e06498e668011c37c53247257ca6bae0ce2ba
parentffba02d029a94b63171767838ed7dd421b6063a1 (diff)
parentca032f8473858f80317ab094e36f29cb6a3b1da5 (diff)
downloadplatform-3b7e6ec180b042e7a6cd69162d08deff7dc43e77.tar.gz
Merge "Support abi check in bazel." am: 890139c833 am: 80980a2190 am: ca032f8473
Original change: https://android-review.googlesource.com/c/platform/prebuilts/abi-dumps/platform/+/2300606 Change-Id: Ib234cc3461a79457535d857aca04597cec419a57 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-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(["**/*"]),
+)