summaryrefslogtreecommitdiff
path: root/experiments
diff options
context:
space:
mode:
authorKarl Shaffer <karlshaffer@google.com>2021-04-15 14:20:20 -0400
committerKarl Shaffer <karlshaffer@google.com>2021-04-19 12:21:52 -0400
commit52534a27035d579346b05f2a42a18d940a640494 (patch)
tree9b1fcaaa73ea317a369daf80e024642014d7fb70 /experiments
parentaf467147067164176600763e8ad5312a0f01f5ed (diff)
downloadpesto-52534a27035d579346b05f2a42a18d940a640494.tar.gz
Add a script to prepare a Bazel environment
Starts the migration of the prepare_bazel_test_env script which utilizes Soong prebuilts to scaffold a Bazel environment that can be used for executing tests. Test: N/A Change-Id: Ia6f88dfa7b85f9fe9225d9d162902117d660f3bd
Diffstat (limited to 'experiments')
-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.