summaryrefslogtreecommitdiffstats
path: root/Android.bp
Commit message (Collapse)AuthorAgeFilesLines
* [LSC] Add LOCAL_LICENSE_KINDS to hardware/nxp/nfcBob Badour2021-05-251-0/+15
| | | | | | | | | | | | | | | | | | | | Added SPDX-license-identifier-Apache-2.0 to: Android.bp intf/nxpnfc/1.0/Android.bp intf/nxpnfc/2.0/Android.bp intf/nxpnfc/Android.bp pn8x/Android.bp snxxx/Android.bp snxxx/halimpl/libnxpparser/Android.bp Bug: 68860345 Bug: 151177513 Bug: 151953481 Test: m all Exempt-From-Owner-Approval: janitorial work Change-Id: I5a0c0ac980b44f5c04659df9a544d6cd577d99c7
* Add Nfc hal support for SNXXXanil.hiranniah2021-05-181-146/+21
| | | | | | | | | | | | | | Move existing NFC hal to pn8x/ Add NFC hal for snxxx in snxxx/ Move existing extns/intf to intf/ Update Android.bp files to build hals for pn8x and snxxx BYPASS_INCLUSIVE_LANGUAGE_REASON=keep legacy configuration naming Bug: 188034640 Test: NFC On/Off, CTS, VTS, CE, Tag read Merged-In: Iec29b1eb038f6f524777fdf22a1a48180f0a8b00 Change-Id: Iec29b1eb038f6f524777fdf22a1a48180f0a8b00
* Revert "Add Nfc hal support for SNXXX"android-s-beta-2android-s-beta-1George Chang2021-05-131-21/+146
| | | | | | | | | This reverts commit 5c4c40d081c4d36703fbaa72934f4150e1e47252. Bug: 188009583 Reason for revert: build break Change-Id: I10b8aea6a8688e7dd7eee856a13e875ebdc1a2b5
* Add Nfc hal support for SNXXXanil.hiranniah2021-05-131-146/+21
| | | | | | | | | | | | Move existing NFC hal to pn8x/ Add NFC hal for snxxx in snxxx/ Move existing extns/intf to intf/ Update Android.bp files to build hals for pn8x and snxxx BYPASS_INCLUSIVE_LANGUAGE_REASON=keep legacy configuration naming Test: NFC On/Off, CTS, VTS, CE, Tag read Change-Id: Ic1e9f16ef5c4540d49c83dfca06e1cbbbe8ec86c
* [LSC] Add LOCAL_LICENSE_KINDS to hardware/nxp/nfcBob Badour2021-02-121-0/+15
| | | | | | | | | | | | | | | | Added SPDX-license-identifier-Apache-2.0 to: Android.bp extns/intf/nxpnfc/1.0/Android.bp extns/intf/nxpnfc/Android.bp Bug: 68860345 Bug: 151177513 Bug: 151953481 Test: m all Exempt-From-Owner-Approval: janitorial work Change-Id: Ia8ab737b4b67eb4a038e18fe9f792b119a517990
* Move NXP MIFARE entern to HALandroid-r-preview-1nxp727632020-01-071-0/+2
| | | | | | Bug: 142625833 Test: Mifare Classic Tag Read/Write/Format Change-Id: Ibb2fba3e801820cc2080e51dc302288b617ea0c1
* Remove libhwbinder/libhidltransport depsSteven Moreland2019-10-011-3/+0
| | | | | | | | Since these were combined into libhidlbase. Bug: 135686713 Test: build only (libhwbinder/libhidltransport are empty) Change-Id: Idf12ee2fc8eca402b5f6479dafc65cbb28545245
* Disable -Wimplicit-fallthrough unless src is fixed.Chih-Hung Hsieh2019-04-241-1/+1
| | | | | | | | | | | * Current -Wno-error=implicit-fallthrough caused clang-tidy assertion fault, see https://bugs.llvm.org/show_bug.cgi?id=39312 * We could enable this warning when source file is fixed. Bug: 117780134 Test: build with WITH_TIDY=1 Change-Id: I62775c72d7d567efb6687b8a3d2604160995c260
* Support NFC HAL V1.2anil.hiranniah2019-04-151-7/+26
| | | | | Test: VTSv1.0,VTSv1.1,VTSv1.2, NFC-On/Off Change-Id: I7d0156dbb61200b57f615875b12d01f41bb92bae
* NfCC power state tracker implementationanil.hiranniah2019-04-121-0/+1
| | | | | | | | | | | | | | Calculate and log amount of time spent by NFCC in following power states 1. Active mode. 2. Standby mode. This log information can be read from /data/vendor/nfc/nfc_power_state.txt Bug:68656882 Test: NFC Enable, Disable & VTS Test. Change-Id: I0692add33bd877e8425acb8b57bd84766ee6358b
* Allow implicit-fallthrough warnings locally.Chih-Hung Hsieh2018-10-191-0/+2
| | | | | | | | | It will be a global error by default. Test: make checkbuild Bug: 112564944 Change-Id: I9f3b4638d1aa59aec5588e4c85e93c3e8ee861fc Exempt-From-Owner-Approval: do not block on new warnings
* Chip type decided at runtime.Love Khanna2018-03-191-2/+1
| | | | | | | | Dynamically detect chip type, load configuarations and firmware file base on chip type. Test: NFC enable/disable. Change-Id: Iec6bd7f82ed65482df4b800e841e39e88968e201
* Add NFC -1.1 and vendor extensions.Love Khanna2018-03-061-0/+111
| | | | | Test: device boot;android.hardware.nfc@1.1-service should be running. Change-Id: If40274a7fd4d495c7886f639cf8f81a8ee5e49d0
* Remove unused Android.bpJeff Gaston2017-08-111-0/+0
| | | | | | Bug: 64363847 Test: m -j Change-Id: I5de51114dff743286040186408a424f7a516db12
* Readability fix: if statement assignmentsRuchi Kandoi2017-03-061-0/+0
Coccinelle-assisted: @@ variable i; expression E; statement S1, S2; @@ + i = E; if ( ( - (i = E) + i != ... | - (i = E) + i == ... | - (i = E) + i < ... | - (i = E) + i > ... | - (i = E) + i <= ... | - (i = E) + i >= ... | - (i = E) + i ) ) S1 else S2 spatch --sp-file if_assignment.cocci --in-place --dir . find * | grep "\.[ch]" | xargs clang-format --style=file -i Test: Compiles Change-Id: Ifb9cde410ed84e0ab8012432ad0ec30df17d1786 Signed-off-by: Ruchi Kandoi <kandoiruchi@google.com>