From b525965de7b55809081def6db19aef82257f5d99 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Mon, 19 Sep 2016 10:38:34 -0700 Subject: [PATCH] vndk: tools: initial boilerplate for abides. test: boilerplate runs. Change-Id: I58ca2956e2e276f12c1c710c9b9e7fa26690c0a6 --- vndk/tools/abides/README.md | 4 ++++ vndk/tools/abides/__init__.py | 1 + vndk/tools/abides/abides.py | 8 ++++++++ 3 files changed, 13 insertions(+) create mode 100644 vndk/tools/abides/README.md create mode 100644 vndk/tools/abides/__init__.py create mode 100755 vndk/tools/abides/abides.py diff --git a/vndk/tools/abides/README.md b/vndk/tools/abides/README.md new file mode 100644 index 000000000..ad9b2e20a --- /dev/null +++ b/vndk/tools/abides/README.md @@ -0,0 +1,4 @@ +Checks for ABI Compliance between two libraries. + +[go/android-lego-kernel-vndk-abi](http://go/android-lego-kernel-vndk-abi) + diff --git a/vndk/tools/abides/__init__.py b/vndk/tools/abides/__init__.py new file mode 100644 index 000000000..e5a0d9b48 --- /dev/null +++ b/vndk/tools/abides/__init__.py @@ -0,0 +1 @@ +#!/usr/bin/env python3 diff --git a/vndk/tools/abides/abides.py b/vndk/tools/abides/abides.py new file mode 100755 index 000000000..a1a8a3678 --- /dev/null +++ b/vndk/tools/abides/abides.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python3 + +def main(): + # TODO + print("todo") + +if __name__ == "__main__": + main()