device.mk 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. #
  2. # Copyright (C) 2024 The LineageOS Project
  3. #
  4. # SPDX-License-Identifier: Apache-2.0
  5. #
  6. # Add common symlinks definitions for Qualcomm Samsung
  7. $(call inherit-product, hardware/samsung/symlinks/qcom-common.mk)
  8. # Enable project quotas and casefolding for emulated storage without sdcardfs
  9. $(call inherit-product, $(SRC_TARGET_DIR)/product/emulated_storage.mk)
  10. # Enforce generic ramdisk allow list
  11. $(call inherit-product, $(SRC_TARGET_DIR)/product/generic_ramdisk.mk)
  12. # Dalvik
  13. $(call inherit-product, frameworks/native/build/phone-xhdpi-6144-dalvik-heap.mk)
  14. # Enable updating of APEXes
  15. $(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk)
  16. # Add common definitions for Qualcomm
  17. $(call inherit-product, hardware/qcom-caf/common/common.mk)
  18. # AAPT
  19. PRODUCT_AAPT_CONFIG := normal
  20. PRODUCT_AAPT_PREF_CONFIG := xxxhdpi
  21. # API levels
  22. BOARD_SHIPPING_API_LEVEL := 34
  23. PRODUCT_SHIPPING_API_LEVEL := $(BOARD_SHIPPING_API_LEVEL)
  24. # Audio
  25. PRODUCT_PACKAGES += \
  26. [email protected] \
  27. [email protected] \
  28. android.hardware.audio.service \
  29. android.hardware.bluetooth.audio-impl \
  30. [email protected] \
  31. audioadsprpcd \
  32. audio.bluetooth.default \
  33. audio.r_submix.default \
  34. audio.usb.default \
  35. libagm_compress_plugin \
  36. libagm_mixer_plugin \
  37. libagm_pcm_plugin \
  38. libaudiochargerlistener \
  39. libbatterylistener \
  40. libfmpal \
  41. libhfp_pal \
  42. libqcompostprocbundle \
  43. libqcomvisualizer \
  44. libqcomvoiceprocessing \
  45. libsndcardparser \
  46. libtinycompress \
  47. libvolumelistener \
  48. sound_trigger.primary.pineapple
  49. AUDIO_HAL_DIR := hardware/qcom-caf/sm8650/audio/primary-hal
  50. AUDIO_PAL_DIR := hardware/qcom-caf/sm8650/audio/pal
  51. PRODUCT_COPY_FILES += \
  52. $(AUDIO_HAL_DIR)/configs/common/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration.xml \
  53. $(AUDIO_HAL_DIR)/configs/pineapple/audio_effects.conf:$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_pineapple/audio_effects.conf \
  54. $(AUDIO_HAL_DIR)/configs/pineapple/audio_effects.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_pineapple/audio_effects.xml \
  55. $(AUDIO_HAL_DIR)/configs/pineapple/microphone_characteristics.xml:$(TARGET_COPY_OUT_VENDOR)/etc/microphone_characteristics.xml \
  56. $(AUDIO_PAL_DIR)/configs/pineapple/card-defs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/card-defs.xml \
  57. $(LOCAL_PATH)/configs/audio/audio_effects.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_effects.xml \
  58. $(LOCAL_PATH)/configs/audio/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_pineapple_qssi/audio_policy_configuration.xml \
  59. $(LOCAL_PATH)/configs/audio/audio_policy_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_volumes.xml
  60. PRODUCT_COPY_FILES += \
  61. frameworks/av/services/audiopolicy/config/bluetooth_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth_audio_policy_configuration.xml \
  62. frameworks/av/services/audiopolicy/config/default_volume_tables.xml:$(TARGET_COPY_OUT_VENDOR)/etc/default_volume_tables.xml \
  63. frameworks/av/services/audiopolicy/config/r_submix_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/r_submix_audio_policy_configuration.xml \
  64. frameworks/av/services/audiopolicy/config/usb_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/usb_audio_policy_configuration.xml \
  65. frameworks/native/data/etc/android.hardware.audio.low_latency.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.audio.low_latency.xml \
  66. frameworks/native/data/etc/android.hardware.audio.pro.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.audio.pro.xml \
  67. frameworks/native/data/etc/android.software.midi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.midi.xml
  68. # Bluetooth
  69. PRODUCT_COPY_FILES += \
  70. frameworks/native/data/etc/android.hardware.bluetooth.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth.xml \
  71. frameworks/native/data/etc/android.hardware.bluetooth_le.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth_le.xml
  72. # Boot animation
  73. TARGET_SCREEN_HEIGHT := 2340
  74. TARGET_SCREEN_WIDTH := 1080
  75. # Camera
  76. PRODUCT_PACKAGES += \
  77. android.hardware.graphics.common-V4-ndk.vendor \
  78. libjpeg.vendor \
  79. libyuv.vendor
  80. PRODUCT_COPY_FILES += \
  81. frameworks/native/data/etc/android.hardware.camera.concurrent.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.concurrent.xml \
  82. frameworks/native/data/etc/android.hardware.camera.flash-autofocus.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.flash-autofocus.xml \
  83. frameworks/native/data/etc/android.hardware.camera.front.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.front.xml \
  84. frameworks/native/data/etc/android.hardware.camera.full.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.full.xml \
  85. frameworks/native/data/etc/android.hardware.camera.raw.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.raw.xml \
  86. $(LOCAL_PATH)/configs/permissions/platform-samsung.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/platform-samsung.xml
  87. # DebugFS
  88. PRODUCT_SET_DEBUGFS_RESTRICTIONS := true
  89. # Default ADB shell prompt
  90. PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
  91. persist.sys.adb.shell=/system_ext/bin/bash
  92. # Display
  93. PRODUCT_PACKAGES += \
  94. [email protected] \
  95. init.qti.display_boot.rc \
  96. init.qti.display_boot.sh \
  97. vendor.qti.hardware.display.allocator-service \
  98. vendor.qti.hardware.display.composer-service \
  99. vendor.qti.hardware.display.composer-service.rc \
  100. vendor.qti.hardware.display.composer-service.xml \
  101. vendor.qti.hardware.display.config-V2-ndk.vendor \
  102. vendor.qti.hardware.display.demura-service
  103. PRODUCT_COPY_FILES += \
  104. frameworks/native/data/etc/android.hardware.touchscreen.multitouch.jazzhand.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.touchscreen.multitouch.jazzhand.xml
  105. # Doze
  106. PRODUCT_PACKAGES += \
  107. SamsungDoze
  108. # DRM
  109. PRODUCT_PACKAGES += \
  110. android.hardware.drm-service.clearkey
  111. # fastbootd
  112. PRODUCT_PACKAGES += \
  113. [email protected] \
  114. fastbootd
  115. # Fingerprint
  116. PRODUCT_PACKAGES += \
  117. android.hardware.biometrics.fingerprint-service.samsung
  118. PRODUCT_COPY_FILES += \
  119. frameworks/native/data/etc/android.hardware.fingerprint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.fingerprint.xml
  120. # Graphics
  121. PRODUCT_COPY_FILES += \
  122. frameworks/native/data/etc/android.hardware.opengles.aep.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.opengles.aep.xml \
  123. frameworks/native/data/etc/android.hardware.vulkan.compute-0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.compute-0.xml \
  124. frameworks/native/data/etc/android.hardware.vulkan.level-1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.level-1.xml \
  125. frameworks/native/data/etc/android.hardware.vulkan.version-1_1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.version-1_1.xml \
  126. frameworks/native/data/etc/android.hardware.vulkan.version-1_3.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.version-1_3.xml \
  127. frameworks/native/data/etc/android.software.opengles.deqp.level-2022-03-01.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.opengles.deqp.level.xml \
  128. frameworks/native/data/etc/android.software.vulkan.deqp.level-2022-03-01.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.vulkan.deqp.level.xml
  129. # GPS
  130. PRODUCT_COPY_FILES += \
  131. frameworks/native/data/etc/android.hardware.location.gps.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.location.gps.xml
  132. # Health
  133. PRODUCT_PACKAGES += \
  134. android.hardware.health-service.qti \
  135. android.hardware.health-service.qti_recovery
  136. # HIDL
  137. PRODUCT_PACKAGES += \
  138. libhidltransport.vendor \
  139. libhwbinder.vendor
  140. # IPACM
  141. PRODUCT_PACKAGES += \
  142. ipacm \
  143. IPACM_cfg.xml \
  144. IPACM_Filter_cfg.xml
  145. # Media
  146. PRODUCT_PACKAGES += \
  147. libavservices_minijail \
  148. libpalclient
  149. PRODUCT_COPY_FILES += \
  150. $(AUDIO_HAL_DIR)/configs/common/codec2/media_codecs_c2_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_c2_audio.xml \
  151. $(AUDIO_HAL_DIR)/configs/common/codec2/service/1.0/c2audio.vendor.base-arm64.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/c2audio.vendor.base-arm64.policy \
  152. $(AUDIO_HAL_DIR)/configs/common/codec2/service/1.0/c2audio.vendor.ext-arm64.policy:$(TARGET_COPY_OUT_VENDOR)/etc/seccomp_policy/c2audio.vendor.ext-arm64.policy
  153. # Memtrack
  154. PRODUCT_PACKAGES += \
  155. vendor.qti.hardware.memtrack-service
  156. # NFC
  157. PRODUCT_PACKAGES += \
  158. android.hardware.nfc-service.nxp \
  159. nqnfcinfo \
  160. Tag
  161. PRODUCT_COPY_FILES += \
  162. frameworks/native/data/etc/android.hardware.nfc.ese.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.ese.xml \
  163. frameworks/native/data/etc/android.hardware.nfc.hce.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.hce.xml \
  164. frameworks/native/data/etc/android.hardware.nfc.hcef.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.hcef.xml \
  165. frameworks/native/data/etc/android.hardware.nfc.uicc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.uicc.xml \
  166. frameworks/native/data/etc/android.hardware.nfc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.nfc.xml \
  167. frameworks/native/data/etc/android.hardware.se.omapi.ese.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.se.omapi.ese.xml \
  168. frameworks/native/data/etc/android.hardware.se.omapi.uicc.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.se.omapi.uicc.xml \
  169. frameworks/native/data/etc/com.android.nfc_extras.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.android.nfc_extras.xml \
  170. frameworks/native/data/etc/com.nxp.mifare.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/com.nxp.mifare.xml
  171. # Overlay
  172. PRODUCT_PACKAGES += \
  173. CarrierConfigResCommon \
  174. FrameworksResE1q \
  175. FrameworksResUdfpsSensor \
  176. SettingsResCommon \
  177. SystemUIResE1q \
  178. WifiResTargetE1q
  179. # Power
  180. PRODUCT_PACKAGES += \
  181. android.hardware.power-service-qti
  182. # Partitions
  183. PRODUCT_USE_DYNAMIC_PARTITIONS := true
  184. # Product characteristics
  185. PRODUCT_CHARACTERISTICS := phone
  186. # Protobuf
  187. PRODUCT_PACKAGES += \
  188. libprotobuf-cpp-full-3.9.1-vendorcompat
  189. # QMI
  190. PRODUCT_PACKAGES += \
  191. libcurl.vendor \
  192. libjsoncpp.vendor \
  193. libqti_vndfwk_detect_vendor \
  194. libsqlite.vendor
  195. # QTI
  196. PRODUCT_COPY_FILES += \
  197. $(LOCAL_PATH)/configs/permissions/privapp-permissions-qti.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/privapp-permissions-qti.xml \
  198. $(LOCAL_PATH)/configs/permissions/qti_whitelist.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/sysconfig/qti_whitelist.xml
  199. # RIL
  200. PRODUCT_PACKAGES += \
  201. librilutils \
  202. libnetutils.vendor \
  203. libsecril-client \
  204. secril_config_svc \
  205. sehradiomanager
  206. # Rootdir
  207. PRODUCT_PACKAGES += \
  208. dcc_extension.sh \
  209. hdm_status.sh \
  210. init.class_main.sh \
  211. init.crda.sh \
  212. init.kernel.post_boot-cliffs.sh \
  213. init.kernel.post_boot-pineapple.sh \
  214. init.kernel.post_boot.sh \
  215. init.mdm.sh \
  216. init.qcom.class_core.sh \
  217. init.qcom.coex.sh \
  218. init.qcom.early_boot.sh \
  219. init.qcom.efs.sync.sh \
  220. init.qcom.post_boot.sh \
  221. init.qcom.sdio.sh \
  222. init.qcom.sensors.sh \
  223. init.qcom.sh \
  224. init.qti.qcv.rc \
  225. init.qti.qcv.sh \
  226. init.qti.kernel.debug-cliffs.sh \
  227. init.qti.kernel.debug-pineapple.sh \
  228. init.qti.kernel.debug.sh \
  229. init.qti.kernel.early_debug-pineapple.sh \
  230. init.qti.kernel.early_debug.sh \
  231. init.qti.kernel.sh \
  232. init.qti.media.sh \
  233. init.qti.time.daemon.sh \
  234. init.qti.write.sh \
  235. init.vendor.sensordebug.sh \
  236. init.vendor.sensordebug.ssr_dump.sh \
  237. qca6234-service.sh \
  238. system_dlkm_modprobe.sh \
  239. ueventd.qcom.rc \
  240. vendor_modprobe.sh \
  241. PRODUCT_PACKAGES += \
  242. fstab.qcom \
  243. init.e1q.rc \
  244. init.qcom.factory.rc \
  245. init.qcom.rc \
  246. init.qti.kernel.rc \
  247. init.qti.ss-ramdump.sh \
  248. init.qti.ufs.rc \
  249. init.samsung.bsp.rc \
  250. init.samsung.display.rc \
  251. init.samsung.dp.rc \
  252. init.samsung.factory.rc \
  253. init.samsung.power.rc \
  254. init.samsung.rc \
  255. init.samsung.user.rc \
  256. init.target.rc \
  257. init.recovery.qcom.rc \
  258. init.recovery.samsung.rc \
  259. PRODUCT_COPY_FILES += \
  260. $(LOCAL_PATH)/rootdir/etc/fstab.qcom:$(TARGET_COPY_OUT_VENDOR_RAMDISK)/fstab.qcom
  261. # Sensors
  262. #PRODUCT_PACKAGES += \
  263. # android.hardware.sensors-service.samsung-multihal \
  264. # sensors.dynamic_sensor_hal
  265. PRODUCT_COPY_FILES += \
  266. $(LOCAL_PATH)/configs/hals.conf:$(TARGET_COPY_OUT_VENDOR)/etc/sensors/hals.conf
  267. PRODUCT_COPY_FILES += \
  268. frameworks/native/data/etc/android.hardware.sensor.accelerometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.accelerometer.xml \
  269. frameworks/native/data/etc/android.hardware.sensor.barometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.barometer.xml \
  270. frameworks/native/data/etc/android.hardware.sensor.compass.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.compass.xml \
  271. frameworks/native/data/etc/android.hardware.sensor.gyroscope.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.gyroscope.xml \
  272. frameworks/native/data/etc/android.hardware.sensor.light.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.light.xml \
  273. frameworks/native/data/etc/android.hardware.sensor.proximity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.proximity.xml \
  274. frameworks/native/data/etc/android.hardware.sensor.stepcounter.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepcounter.xml \
  275. frameworks/native/data/etc/android.hardware.sensor.stepdetector.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepdetector.xml
  276. # Soong namespaces
  277. PRODUCT_SOONG_NAMESPACES += \
  278. $(LOCAL_PATH) \
  279. hardware/samsung \
  280. kernel/samsung/sm8650 \
  281. kernel/samsung/sm8650-modules
  282. # Telephony
  283. PRODUCT_PACKAGES += \
  284. qti-telephony-hidl-wrapper \
  285. qti_telephony_hidl_wrapper.xml \
  286. qti-telephony-utils \
  287. qti_telephony_utils.xml \
  288. telephony-ext
  289. PRODUCT_BOOT_JARS += \
  290. telephony-ext
  291. PRODUCT_COPY_FILES += \
  292. frameworks/native/data/etc/android.hardware.telephony.gsm.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/vendor.samsung.hardware.telephony.gsm.xml \
  293. frameworks/native/data/etc/android.hardware.telephony.mbms.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.telephony.mbms.xml \
  294. frameworks/native/data/etc/android.software.sip.voip.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.sip.voip.xml
  295. # Thermal
  296. PRODUCT_PACKAGES += \
  297. [email protected]
  298. # Trusted UI
  299. PRODUCT_PACKAGES += \
  300. [email protected] \
  301. [email protected]
  302. # USB
  303. PRODUCT_PACKAGES += \
  304. android.hardware.usb-service.qti \
  305. android.hardware.usb.gadget-service.qti \
  306. init.qcom.usb.rc \
  307. init.qcom.usb.sh
  308. PRODUCT_SOONG_NAMESPACES += \
  309. vendor/qcom/opensource/usb/etc
  310. PRODUCT_COPY_FILES += \
  311. frameworks/native/data/etc/android.hardware.usb.accessory.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.accessory.xml \
  312. frameworks/native/data/etc/android.hardware.usb.host.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.host.xml
  313. # Vendor service manager
  314. PRODUCT_PACKAGES += \
  315. vndservicemanager
  316. # Verified Boot
  317. PRODUCT_COPY_FILES += \
  318. frameworks/native/data/etc/android.software.verified_boot.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.verified_boot.xml
  319. # Vibrator
  320. #PRODUCT_PACKAGES += \
  321. #android.hardware.vibrator-service.samsung
  322. # VNDK
  323. PRODUCT_PACKAGES += \
  324. libcrypto-v33
  325. # Wi-Fi
  326. PRODUCT_PACKAGES += \
  327. android.hardware.wifi-service \
  328. hostapd \
  329. libwpa_client \
  330. libwifi-hal-ctrl \
  331. libwifi-hal-qcom \
  332. wpa_supplicant \
  333. wpa_supplicant.conf \
  334. firmware_wlanmdsp.otaupdate_symlink \
  335. firmware_wlan_mac.bin_symlink \
  336. firmware_WCNSS_qcom_cfg.ini_symlink
  337. PRODUCT_COPY_FILES += \
  338. frameworks/native/data/etc/android.hardware.wifi.aware.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.aware.xml \
  339. frameworks/native/data/etc/android.hardware.wifi.direct.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.direct.xml \
  340. frameworks/native/data/etc/android.hardware.wifi.passpoint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.passpoint.xml \
  341. frameworks/native/data/etc/android.hardware.wifi.rtt.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.rtt.xml \
  342. frameworks/native/data/etc/android.hardware.wifi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.xml \
  343. frameworks/native/data/etc/android.software.ipsec_tunnels.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.ipsec_tunnels.xml
  344. # Inherit the proprietary files
  345. $(call inherit-product, vendor/samsung/e1q/e1q-vendor.mk)