summaryrefslogtreecommitdiffstats
path: root/tools/recovery_l10n/Android.mk
blob: 9fb797cf3937c1f9c6c5a172bb3dbb8b59b7df90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2012 Google Inc. All Rights Reserved.


# Prevent RecoveryLocalizer already defined errors in older trees
ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0)

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_PACKAGE_NAME := RecoveryLocalizer
LOCAL_MODULE_TAGS := optional

LOCAL_SRC_FILES := $(call all-java-files-under, src)

include $(BUILD_PACKAGE)

endif