Merge "propagate min_sdk_version to java backend" am: 5a023d6399

Original change: https://android-review.googlesource.com/c/platform/system/tools/hidl/+/1567508

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I95fbafc9ce38fe7aa5188ddee2c26cca47d27007
tree: ef86bc3dd95c17935b93d127f325f5093e7edcf8
  1. build/
  2. c2hal/
  3. hashing/
  4. hidl2aidl/
  5. host_utils/
  6. lint/
  7. metadata/
  8. scripts/
  9. test/
  10. utils/
  11. Android.bp
  12. Annotation.cpp
  13. Annotation.h
  14. ArrayType.cpp
  15. ArrayType.h
  16. AST.cpp
  17. AST.h
  18. CleanSpec.mk
  19. CompoundType.cpp
  20. CompoundType.h
  21. ConstantExpression.cpp
  22. ConstantExpression.h
  23. Coordinator.cpp
  24. Coordinator.h
  25. DeathRecipientType.cpp
  26. DeathRecipientType.h
  27. DocComment.cpp
  28. DocComment.h
  29. EnumType.cpp
  30. EnumType.h
  31. FmqType.cpp
  32. FmqType.h
  33. FormattingConstants.h
  34. generateCpp.cpp
  35. generateCppAdapter.cpp
  36. generateCppImpl.cpp
  37. generateDependencies.cpp
  38. generateFormattedHidl.cpp
  39. generateInheritanceHierarchy.cpp
  40. generateJava.cpp
  41. generateJavaImpl.cpp
  42. generateVts.cpp
  43. HandleType.cpp
  44. HandleType.h
  45. hidl-gen_l.h
  46. hidl-gen_l.ll
  47. hidl-gen_y-helpers.h
  48. hidl-gen_y.yy
  49. HidlTypeAssertion.cpp
  50. HidlTypeAssertion.h
  51. Interface.cpp
  52. Interface.h
  53. Location.cpp
  54. Location.h
  55. main.cpp
  56. MemoryType.cpp
  57. MemoryType.h
  58. Method.cpp
  59. Method.h
  60. NamedType.cpp
  61. NamedType.h
  62. NOTICE
  63. OWNERS
  64. PointerType.cpp
  65. PointerType.h
  66. PREUPLOAD.cfg
  67. README.md
  68. Reference.h
  69. ScalarType.cpp
  70. ScalarType.h
  71. Scope.cpp
  72. Scope.h
  73. StringType.cpp
  74. StringType.h
  75. TEST_MAPPING
  76. Type.cpp
  77. Type.h
  78. TypeDef.cpp
  79. TypeDef.h
  80. update-all-google-makefiles.sh
  81. update-makefiles-helper.sh
  82. VectorType.cpp
  83. VectorType.h
README.md

hidl-gen

Full documentation can be found here: https://source.android.com/devices/architecture/hidl/

hidl-gen is a compiler for the HIDL (HAL Interface Design Language) which generates C++ and Java endpoints for RPC mechanisms. The main userspace libraries which this compiler uses can be found at system/libhidl.

1. Build

m hidl-gen

2. Run

Note that options for hidl-gen expected to be invoked by the build system are marked with ‘internal’ in the help menu.

hidl-gen -h

hidl-gen -o output -L c++-impl -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.nfc@1.0

Some defaults for package roots are also provided

hidl-gen -o output -L c++-impl android.hardware.nfc@1.0
hidl-gen -o output -L vts android.hardware.nfc@1.0
hidl-gen -L hash android.hardware.nfc@1.0

Example command for vendor project

hidl-gen -L c++-impl -r vendor.foo:vendor/foo/interfaces vendor.foo.nfc@1.0

See update-makefiles-helper.sh and update-all-google-makefiles.sh for examples of how to generate HIDL makefiles (using the -Landroidbp option).

NOTE: When using the -Landroidbp option, you can force generated modules to be installed in /system_ext rather than other partition by putting a marker file .hidl_for_system_ext alongside *.hal files.

NOTE: You can also install the vendor variant of the generated modules to be installed in /odm rather than /vendor by putting a marker file .hidl_for_odm alongside *.hal files.

c2hal

This is a helper tool to convert C headers to valid .hal files.

m c2hal && c2hal -h