diff options
author | 2024-01-31 17:59:33 +0000 | |
---|---|---|
committer | 2024-01-31 17:59:33 +0000 | |
commit | 04a158bf3018869511634e08a28d25cc27aac962 (patch) | |
tree | e59484dccd66dd00a8030e95a1b06e6c30cc2b00 /api/api.go | |
parent | 2c67c1cda0189264c901ca19b171edd43e916e1b (diff) | |
parent | 2537350b9e6e459c4538ea74c64c6d40f1573920 (diff) |
Merge changes from topic "framework-nfc-updatable" into main
* changes:
nfc(api): Move NFC API lint baseline
nfc(api): Move nfc classes to framework-nfc
framework-nfc: Switch to "framework-module-defaults"
Diffstat (limited to 'api/api.go')
-rw-r--r-- | api/api.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/api/api.go b/api/api.go index a632582ce76d..fa2be21db09f 100644 --- a/api/api.go +++ b/api/api.go @@ -31,7 +31,6 @@ const conscrypt = "conscrypt.module.public.api" const i18n = "i18n.module.public.api" const virtualization = "framework-virtualization" const location = "framework-location" -const nfc = "framework-nfc" var core_libraries_modules = []string{art, conscrypt, i18n} @@ -43,7 +42,7 @@ var core_libraries_modules = []string{art, conscrypt, i18n} // APIs. // In addition, the modules in this list are allowed to contribute to test APIs // stubs. -var non_updatable_modules = []string{virtualization, location, nfc} +var non_updatable_modules = []string{virtualization, location} // The intention behind this soong plugin is to generate a number of "merged" // API-related modules that would otherwise require a large amount of very |