aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-08-03 22:55:23 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-08-03 22:55:23 +0000
commita2838745410e5b01594b8d726963139632d356d0 (patch)
tree08a38c305064022ffe8cea6080d6a6ed4e7d8219
parent3e92451e65ddaea71d3a20042ea09f88715ca92e (diff)
parent20ba663268756081d7184785297208a52ebafea8 (diff)
downloadbazel_common_rules-android14-mainline-tethering-release.tar.gz
Change-Id: I5e1fd5950f8c1042996438bcf56bdd66927fb96f
-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