blob: 0b668ac97a68841158d2d31e7d906e1fb86971ea [file] [log] [blame]
Dan Willemsen695849e2019-04-17 12:25:09 -07001# These module types can still be used without warnings or errors.
2AVAILABLE_BUILD_MODULE_TYPES :=$= \
Dan Willemsen695849e2019-04-17 12:25:09 -07003 BUILD_COPY_HEADERS \
4 BUILD_EXECUTABLE \
5 BUILD_FUZZ_TEST \
6 BUILD_HEADER_LIBRARY \
7 BUILD_HOST_DALVIK_JAVA_LIBRARY \
8 BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY \
9 BUILD_HOST_EXECUTABLE \
Dan Willemsen695849e2019-04-17 12:25:09 -070010 BUILD_HOST_JAVA_LIBRARY \
Dan Willemsen695849e2019-04-17 12:25:09 -070011 BUILD_HOST_PREBUILT \
12 BUILD_HOST_SHARED_LIBRARY \
13 BUILD_HOST_SHARED_TEST_LIBRARY \
14 BUILD_HOST_STATIC_LIBRARY \
Dan Willemsen695849e2019-04-17 12:25:09 -070015 BUILD_JAVA_LIBRARY \
16 BUILD_MULTI_PREBUILT \
Dan Willemsen695849e2019-04-17 12:25:09 -070017 BUILD_NATIVE_TEST \
18 BUILD_NOTICE_FILE \
19 BUILD_PACKAGE \
20 BUILD_PHONY_PACKAGE \
21 BUILD_PREBUILT \
22 BUILD_RRO_PACKAGE \
23 BUILD_SHARED_LIBRARY \
24 BUILD_SHARED_TEST_LIBRARY \
25 BUILD_STATIC_JAVA_LIBRARY \
26 BUILD_STATIC_LIBRARY \
Dan Willemsen695849e2019-04-17 12:25:09 -070027
28# These are BUILD_* variables that will throw a warning when used. This is
29# generally a temporary state until all the devices are marked with the
30# relevant BUILD_BROKEN_USES_BUILD_* variables, then these would move to
31# DEFAULT_ERROR_BUILD_MODULE_TYPES.
32DEFAULT_WARNING_BUILD_MODULE_TYPES :=$= \
Dan Willemsenfd84a922019-05-02 15:42:42 -070033 BUILD_AUX_EXECUTABLE \
34 BUILD_AUX_STATIC_LIBRARY \
35 BUILD_HOST_FUZZ_TEST \
36 BUILD_HOST_NATIVE_TEST \
37 BUILD_HOST_STATIC_TEST_LIBRARY \
38 BUILD_NATIVE_BENCHMARK \
39 BUILD_STATIC_TEST_LIBRARY \
Dan Willemsen695849e2019-04-17 12:25:09 -070040
41# These are BUILD_* variables that are errors to reference, but you can set
42# BUILD_BROKEN_USES_BUILD_* in your BoardConfig.mk in order to turn them back
43# to warnings.
44DEFAULT_ERROR_BUILD_MODULE_TYPES :=$= \
Dan Willemsen64eaddf2019-05-02 10:50:55 -070045 BUILD_HOST_TEST_CONFIG \
46 BUILD_TARGET_TEST_CONFIG \
Dan Willemsen695849e2019-04-17 12:25:09 -070047
48# These are BUILD_* variables that are always errors to reference.
49# Setting the BUILD_BROKEN_USES_BUILD_* variables is also an error.
50OBSOLETE_BUILD_MODULE_TYPES :=$= \
51
52$(foreach m,$(OBSOLETE_BUILD_MODULE_TYPES),\
53 $(KATI_obsolete_var $(m),Please convert to Soong) \
54 $(KATI_obsolete_var BUILD_BROKEN_USES_$(m),Please convert to Soong))
55