You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
356 B
11 lines
356 B
#!/bin/bash
|
|
|
|
options="-O some-owner-name
|
|
-r hidl.tests:system/tools/hidl/test/
|
|
-r android.hidl:system/libhidl/transport
|
|
-r android.hardware:hardware/interfaces"
|
|
|
|
hidl-gen -Landroidbp $options hidl.tests.vendor@1.0;
|
|
hidl-gen -Landroidbp $options hidl.tests.vendor@1.1;
|
|
hidl-gen -Landroidbp $options hidl.tests.vendor.android@1.0;
|