summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Shaffer <karlshaffer@google.com>2021-04-29 23:02:52 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-04-29 23:02:52 +0000
commitdb5ca8a0c99a6ccee1ca43d335ace09183e9fa9e (patch)
tree9b1fcaaa73ea317a369daf80e024642014d7fb70
parenta70e1d64832201a425a11e9ce2f2dcff54b1fea4 (diff)
parent7ddda3ee6c8c9eecb4b086fa99b9aaed9e6b039a (diff)
downloadpesto-db5ca8a0c99a6ccee1ca43d335ace09183e9fa9e.tar.gz
Add a script to prepare a Bazel environment am: 52534a2703 am: 7ddda3ee6c
Original change: https://android-review.googlesource.com/c/platform/build/pesto/+/1677130 Change-Id: I8735eb913a60a7c5f4d8ab55a74eda04a012a3ce
-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.