aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-15 09:17:52 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-15 09:17:52 +0000
commit4973d2423818331d60716a517ec30f84d5e935af (patch)
tree08a38c305064022ffe8cea6080d6a6ed4e7d8219
parenta540b9c5a95c1f2f7367e2eeb6abd46f21f2a901 (diff)
parent20ba663268756081d7184785297208a52ebafea8 (diff)
downloadbazel_common_rules-aml_tz5_341510010.tar.gz
Snap for 11224086 from 20ba663268756081d7184785297208a52ebafea8 to mainline-tzdata5-releaseaml_tz5_341510070aml_tz5_341510050aml_tz5_341510010aml_tz5_341510010
Change-Id: I0c6117b66914a438dcce25c8fba7731886262ef9
-rw-r--r--rules/python/stubs/WORKSPACE1
-rw-r--r--rules/python/stubs/python/BUILD1
-rw-r--r--rules/python/stubs/python/defs.bzl24
3 files changed, 26 insertions, 0 deletions
diff --git a/rules/python/stubs/WORKSPACE b/rules/python/stubs/WORKSPACE
new file mode 100644
index 0000000..1cfe581
--- /dev/null
+++ b/rules/python/stubs/WORKSPACE
@@ -0,0 +1 @@
+workspace(name = "rules_python")
diff --git a/rules/python/stubs/python/BUILD b/rules/python/stubs/python/BUILD
new file mode 100644
index 0000000..5a203b3
--- /dev/null
+++ b/rules/python/stubs/python/BUILD
@@ -0,0 +1 @@
+exports_files(["defs.bzl"])
diff --git a/rules/python/stubs/python/defs.bzl b/rules/python/stubs/python/defs.bzl
new file mode 100644
index 0000000..422ef1a
--- /dev/null
+++ b/rules/python/stubs/python/defs.bzl
@@ -0,0 +1,24 @@
+# Copyright (C) 2023 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.
+
+"""rules_python stub workspace until AOSP has the real rules_python external dep."""
+
+# TODO(b/200202912): Delete this when rules_python is pulled into AOSP.
+
+# https://bazel.build/reference/be/python
+# Also see --noincompatible_python_disallow_native_rules
+py_binary = native.py_binary
+py_test = native.py_test
+py_library = native.py_library
+py_runtime = native.py_runtime