Create a new car service lib just for the test lib

The current car-service-lib-for-test statically links all of its deps.
This is not desirable for the car-test-lib as it's meant to test
external apps. The added car-service-test-lib dynamically
links its deps. There needs to be some follow up work to further reduce
the dependncy on the entire car-service-lib, to just include the
functionality needed by the car-test-lib.

Test: make -jN RunCarLibTests

Change-Id: Ia0cc41dcf79748433e7307f6bbc6ddb9900be2a0
5 files changed
tree: af5a8027df6f7fd543193a9d0e73781d4faab7de
  1. car-bugreportd/
  2. car-default-input-service/
  3. car-lib/
  4. car-maps-placeholder/
  5. car-systemtest-lib/
  6. car-test-lib/
  7. car-usb-handler/
  8. car_product/
  9. computepipe/
  10. EncryptionRunner/
  11. evs/
  12. FrameworkPackageStubs/
  13. obd2-lib/
  14. procfs-inspector/
  15. service/
  16. tests/
  17. tools/
  18. user/
  19. vehicle-hal-support-lib/
  20. .clang-format
  21. .gitignore
  22. Android.mk
  23. CleanSpec.mk
  24. OWNERS
  25. PREUPLOAD.cfg
  26. README.md
README.md

Native (C++) code format is required to be compatible with .clang-format file. Run

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.