vndk: tools: initial boilerplate for abides.

test: boilerplate runs.
Change-Id: I58ca2956e2e276f12c1c710c9b9e7fa26690c0a6
This commit is contained in:
Steven Moreland
2016-09-19 10:38:34 -07:00
parent 3c7c1b2b1e
commit b525965de7
3 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
Checks for ABI Compliance between two libraries.
[go/android-lego-kernel-vndk-abi](http://go/android-lego-kernel-vndk-abi)

View File

@@ -0,0 +1 @@
#!/usr/bin/env python3

8
vndk/tools/abides/abides.py Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python3
def main():
# TODO
print("todo")
if __name__ == "__main__":
main()