summaryrefslogtreecommitdiffstats
path: root/bootloader_message/Android.mk
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2016-07-01 00:55:19 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-07-01 00:55:19 +0200
commitfb1dca351d680ae6dab0fe483717a53d6e02b063 (patch)
tree0b491d65092cfa935a9ddfd155067594d6f5988c /bootloader_message/Android.mk
parentMerge \\\\"Fix install.h\\\\'s use of attribute printf.\\\\" am: a82ee456bb am: 691db7ba77 am: 7c4a34195f (diff)
parentresolve merge conflicts of 2f272c0 to nyc-mr1-dev-plus-aosp (diff)
downloadandroid_bootable_recovery-fb1dca351d680ae6dab0fe483717a53d6e02b063.tar
android_bootable_recovery-fb1dca351d680ae6dab0fe483717a53d6e02b063.tar.gz
android_bootable_recovery-fb1dca351d680ae6dab0fe483717a53d6e02b063.tar.bz2
android_bootable_recovery-fb1dca351d680ae6dab0fe483717a53d6e02b063.tar.lz
android_bootable_recovery-fb1dca351d680ae6dab0fe483717a53d6e02b063.tar.xz
android_bootable_recovery-fb1dca351d680ae6dab0fe483717a53d6e02b063.tar.zst
android_bootable_recovery-fb1dca351d680ae6dab0fe483717a53d6e02b063.zip
Diffstat (limited to 'bootloader_message/Android.mk')
-rw-r--r--bootloader_message/Android.mk24
1 files changed, 24 insertions, 0 deletions
diff --git a/bootloader_message/Android.mk b/bootloader_message/Android.mk
new file mode 100644
index 000000000..815ac67d7
--- /dev/null
+++ b/bootloader_message/Android.mk
@@ -0,0 +1,24 @@
+# Copyright (C) 2016 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+LOCAL_CLANG := true
+LOCAL_SRC_FILES := bootloader_message.cpp
+LOCAL_MODULE := libbootloader_message
+LOCAL_STATIC_LIBRARIES := libbase libfs_mgr
+LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
+LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
+include $(BUILD_STATIC_LIBRARY)