summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Shaffer <karlshaffer@google.com>2021-04-29 23:37:28 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-04-29 23:37:28 +0000
commit2919da26e067d6f50b460240ccf423f51b4f1918 (patch)
tree9b1fcaaa73ea317a369daf80e024642014d7fb70
parent22d8402fa1e3d72d230a92a66a8cc442d220b66e (diff)
parentdb5ca8a0c99a6ccee1ca43d335ace09183e9fa9e (diff)
downloadpesto-2919da26e067d6f50b460240ccf423f51b4f1918.tar.gz
Add a script to prepare a Bazel environment am: 52534a2703 am: 7ddda3ee6c am: db5ca8a0c9
Original change: https://android-review.googlesource.com/c/platform/build/pesto/+/1677130 Change-Id: I3030f02e66bf858c14544e5779a916262f7680ff
-rw-r--r--experiments/prepare_bazel_test_env/BUILD.bazel19
-rw-r--r--experiments/prepare_bazel_test_env/README.md5
2 files changed, 24 insertions, 0 deletions
diff --git a/experiments/prepare_bazel_test_env/BUILD.bazel b/experiments/prepare_bazel_test_env/BUILD.bazel
new file mode 100644
index 0000000..e307867
--- /dev/null
+++ b/experiments/prepare_bazel_test_env/BUILD.bazel
@@ -0,0 +1,19 @@
+# Copyright (C) 2021 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.
+
+py_binary(
+ name = "prepare_bazel_test_env",
+ srcs = glob(["*.py"]),
+ data = glob(["data/**/*"])
+)
diff --git a/experiments/prepare_bazel_test_env/README.md b/experiments/prepare_bazel_test_env/README.md
new file mode 100644
index 0000000..896a715
--- /dev/null
+++ b/experiments/prepare_bazel_test_env/README.md
@@ -0,0 +1,5 @@
+# Overview
+
+The `prepare_bazel_test_env` script is a proof-of-concept script
+to create a simulated Bazel environment within the Android source
+tree using targets build by the Soong build system.