* It generates default AIDL services from a .aidl file, like hidl-gen does (aidl binary by Google doesn't do the same) Change-Id: Iff775d0d5aa867746305c8821871424a26cb6290
7 lines
90 B
Python
7 lines
90 B
Python
#!/usr/bin/python3
|
|
|
|
from aidl_gen.main import main
|
|
|
|
if __name__ == '__main__':
|
|
main()
|