Advertisement
masha11

Untitled

Sep 16th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. #ifndef HYBRIS_CONFIG_H_
  2. #define HYBRIS_CONFIG_H_
  3.  
  4. /* When android is built for a specific device the build is
  5. modified by BoardConfig.mk and possibly other mechanisms.
  6. eg
  7. device/samsung/i9305/BoardConfig.mk:
  8. COMMON_GLOBAL_CFLAGS += -DCAMERA_WITH_CITYID_PARAM
  9. device/samsung/smdk4412-common/BoardCommonConfig.mk:
  10. COMMON_GLOBAL_CFLAGS += -DEXYNOS4_ENHANCEMENTS
  11.  
  12. This file allows those global configurations, which are not
  13. otherwise defined in the build headers, to be available in
  14. hybris builds.
  15.  
  16. Typically it is generated at hardware adaptation time.
  17.  
  18. The CONFIG GOES... line below can be used by automation to modify
  19. this file.
  20. */
  21.  
  22. #include <android-version.h>
  23.  
  24. /* Added by Droid HAL packaging for griffin */
  25.  
  26. #define QCOM_BSP 1
  27. #define QTI_BSP 1
  28.  
  29. /* Added by automatic QCOM_BSP detection */
  30. #define QCOM_BSP 1
  31. #define QTI_BSP 1
  32.  
  33. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement