Files
scripts/aidl-gen
Sebastiano Barezzi 1e7d54645f aidl-gen: Initial release
* 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
2021-08-31 00:31:04 +02:00
..
2021-08-31 00:31:04 +02:00
2021-08-31 00:31:04 +02:00
2021-08-31 00:31:04 +02:00

AIDL (service) generator

$ python3 -m aidl_gen -h
usage: aidl_gen [-h] -I INCLUDE fqname out_dir

positional arguments:
  fqname                Full qualifier of an AIDL interface (e.g.
                        android.hardware.light.ILights)
  out_dir               Folders where the service will be written on

optional arguments:
  -h, --help            show this help message and exit
  -I INCLUDE, --include INCLUDE
                        Folders to include that contains the AIDL interface
                        (note: use the folder where Android.bp resides, aka
                        the top AIDL folder), you can use multiple -I flags to
                        include multiple locations, but at least one is
                        required