[automerger skipped] DO NOT MERGE: Validate config activities with their rule owners am: 519bdff797 am: 4b0b99526c -s ours am: a5e3c0aaf7 -s ours am: 1000cb4a1e -s ours am: f95adc16ae -s ours am: 12383baa7a -s ours am: 74a8d4c0d2 -s ours am: c5903df2ea -s ours am: 5b62dfd29f -s ours

am skip reason: subject contains skip directive

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/services/Car/+/20293995

Change-Id: I640bedb0323fbda6a53cff5c7a7d4fe20b80ec92
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
tree: f52e46eea1e014d46e91634c15f5e8f359a1fbf3
  1. apex_car_framework/
  2. car-admin-ui-lib/
  3. car-builtin-lib/
  4. car-helper-lib/
  5. car-lib/
  6. car-lib-module/
  7. car-maps-placeholder/
  8. car-test-lib/
  9. car-usb-handler/
  10. car_product/
  11. cpp/
  12. data/
  13. experimental/
  14. FrameworkPackageStubs/
  15. obd2-lib/
  16. packages/
  17. procfs-inspector/
  18. service/
  19. service-builtin/
  20. tests/
  21. tools/
  22. vehicle-hal-support-lib/
  23. .clang-format
  24. .gitignore
  25. Android.mk
  26. CleanSpec.mk
  27. CPPLINT.cfg
  28. OWNERS
  29. OWNERS_networking
  30. PREUPLOAD.cfg
  31. README.md
  32. TEST_MAPPING
README.md

AAOS

Source code for Android Automotive OS.

Structure

car_product/           - AAOS product
car-builtin-lib/       - A helper library for CarService to access hidden
                         framework APIs
car-lib/               - Car API
car-lib-module/        - Car API module
cpp/                   - Native services
experimental/          - Experimental Car API and services
packages/              - Apps and services for cars
service/               - Car service module
service-builint        - Platform builtin component that runs CarService module
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.