* 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
8 lines
113 B
Python
8 lines
113 B
Python
"""AIDL generator module."""
|
|
|
|
__version__ = "1.0"
|
|
|
|
from pathlib import Path
|
|
|
|
module_path = Path(__file__).parent
|