Move BUILD_[HOST_]SHARED_TEST_LIBRARY to obsolete list

The implementation of these rules have been an $(error) for almost 3
years.

Test: treehugger
Change-Id: I2e258d297172532c0993c8cb8a2e19ad03ea281d
This commit is contained in:
Dan Willemsen 2019-05-08 12:33:12 -07:00
parent fd84a92b82
commit eb22c940ac
2 changed files with 4 additions and 2 deletions

View File

@ -18,9 +18,11 @@ have any problems converting, please contact us via:
| `BUILD_AUX_STATIC_LIBRARY` | Warning |
| `BUILD_HOST_FUZZ_TEST` | Warning |
| `BUILD_HOST_NATIVE_TEST` | Warning |
| `BUILD_HOST_SHARED_TEST_LIBRARY` | Error |
| `BUILD_HOST_STATIC_TEST_LIBRARY` | Warning |
| `BUILD_HOST_TEST_CONFIG` | Error |
| `BUILD_NATIVE_BENCHMARK` | Warning |
| `BUILD_SHARED_TEST_LIBRARY` | Error |
| `BUILD_STATIC_TEST_LIBRARY` | Warning |
| `BUILD_TARGET_TEST_CONFIG` | Error |
| `BUILD_*` | Available |

View File

@ -10,7 +10,6 @@ AVAILABLE_BUILD_MODULE_TYPES :=$= \
BUILD_HOST_JAVA_LIBRARY \
BUILD_HOST_PREBUILT \
BUILD_HOST_SHARED_LIBRARY \
BUILD_HOST_SHARED_TEST_LIBRARY \
BUILD_HOST_STATIC_LIBRARY \
BUILD_JAVA_LIBRARY \
BUILD_MULTI_PREBUILT \
@ -21,7 +20,6 @@ AVAILABLE_BUILD_MODULE_TYPES :=$= \
BUILD_PREBUILT \
BUILD_RRO_PACKAGE \
BUILD_SHARED_LIBRARY \
BUILD_SHARED_TEST_LIBRARY \
BUILD_STATIC_JAVA_LIBRARY \
BUILD_STATIC_LIBRARY \
@ -48,6 +46,8 @@ DEFAULT_ERROR_BUILD_MODULE_TYPES :=$= \
# These are BUILD_* variables that are always errors to reference.
# Setting the BUILD_BROKEN_USES_BUILD_* variables is also an error.
OBSOLETE_BUILD_MODULE_TYPES :=$= \
BUILD_HOST_SHARED_TEST_LIBRARY \
BUILD_SHARED_TEST_LIBRARY \
$(foreach m,$(OBSOLETE_BUILD_MODULE_TYPES),\
$(KATI_obsolete_var $(m),Please convert to Soong) \