blob: 670169da57b97a3286abc26088098d6c7023860f [file] [log] [blame]
Leif Hendrik Wilden42053492018-01-03 11:16:09 -08001LOCAL_MODULE_TAGS := optional
2LOCAL_PRIVILEGED_MODULE := true
3
4LOCAL_STATIC_JAVA_LIBRARIES += guava
5
6LOCAL_STATIC_ANDROID_LIBRARIES := \
KOUSHIK PANUGANTI6ca7acc2018-04-17 16:00:10 -07007 androidx.legacy_legacy-support-core-ui \
8 androidx.legacy_legacy-support-v4 \
9 androidx.appcompat_appcompat \
10 androidx.legacy_legacy-support-v13 \
11 androidx.design_design \
12 androidx.transition_transition \
13 androidx.recyclerview_recyclerview
Leif Hendrik Wilden42053492018-01-03 11:16:09 -080014
15LOCAL_USE_AAPT2 := true
16
17LOCAL_JACK_FLAGS := \
18 -D jack.optimization.inner-class.accessors=true
19
20# Only enable asserts on userdebug/eng builds
21ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
22LOCAL_JACK_FLAGS += -D jack.assert.policy=always
23endif
24
25LOCAL_CERTIFICATE := platform
26LOCAL_PROGUARD_FLAG_FILES := proguard.flags
27
28include $(BUILD_PACKAGE)