Remove VehicleHalTest rule.

Remove the rule to build VehicleHalTest because the test is not
working for now caused by selinux policy change.

Test: Presubmit
Bug: 194316473
Change-Id: I27a11f23e77dedd2eac0d96d64d82b29e20b2cd6
1 file changed
tree: e79c33ec4fb47bf516a7e6f32839ae465bd2c997
  1. car-admin-ui-lib/
  2. car-builtin-lib/
  3. car-internal-lib/
  4. car-lib/
  5. car-maps-placeholder/
  6. car-systemtest-lib/
  7. car-test-lib/
  8. car-usb-handler/
  9. car_product/
  10. cpp/
  11. data/
  12. experimental/
  13. FrameworkPackageStubs/
  14. obd2-lib/
  15. packages/
  16. procfs-inspector/
  17. service/
  18. tests/
  19. tools/
  20. user/
  21. vehicle-hal-support-lib/
  22. .clang-format
  23. .gitignore
  24. Android.mk
  25. CleanSpec.mk
  26. CPPLINT.cfg
  27. OWNERS
  28. PREUPLOAD.cfg
  29. README.md
  30. TEST_MAPPING
README.md

AAOS

Source code for Android Automotive OS.

Structure

car_product/           - AAOS product
car-lib/               - Car API
cpp/                   - Native services
experimental/          - Experimental Car API and services
service/               - Car service
tests/                 - Tests and sample apps
tools/                 - Helper scripts

C++

Native (C++) code format is required to be compatible with .clang-format file. The formatter is already integrated to repo tool. To run manually, use:

git clang-format --style=file --extension='h,cpp,cc' HEAD~

Note that clang-format is not desirable for Android java files. Therefore the command line above is limited to specific extensions.