aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtneygo@google.com>2016-05-03 14:15:23 -0600
committerCourtney Goeltzenleuchter <courtneygo@google.com>2016-05-03 14:16:17 -0600
commitab6c94ddf7bb67d37c4b3c32e5a7ecbf56c6bc03 (patch)
treed2a6e52c478db0cf5f3fa276049d5b2dd74134ba
parent6130dca5798afb9e08e2b7e532aef5d2ebd4d706 (diff)
downloadvulkan-validation-layers-ndk-r12-release.tar.gz
Build script for validation layersndk-r12bndk-r12-beta2ndk-r12-release
Change-Id: Ia2b94ea49e448e9fbd080abfbc3e2e569c487fae
-rwxr-xr-xbuild-android/build.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/build-android/build.py b/build-android/build.py
new file mode 100755
index 000000000..d15faf8ad
--- /dev/null
+++ b/build-android/build.py
@@ -0,0 +1,29 @@
+#!/usr/bin/env python
+#
+# Copyright (C) 2015 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.
+#
+
+import os
+import subprocess
+import sys
+
+def main():
+ print('Constructing Vulkan validation layer source...')
+ print('TBD...')
+ print('Done.')
+
+
+if __name__ == '__main__':
+ main()