summaryrefslogtreecommitdiffstats
path: root/update_verifier/Android.mk
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-12-08 20:29:26 +0100
committerandroid-build-merger <android-build-merger@google.com>2015-12-08 20:29:26 +0100
commit93a0dd2019f693673996d00e77e8ea7b3c6ca1db (patch)
treec760382a65c12aa5256dce296b009a0fcc1b96f8 /update_verifier/Android.mk
parentMerge "Track rename from base/ to android-base/." am: 06ca938ce2 (diff)
parentAdd update_verifier for A/B OTA update. (diff)
downloadandroid_bootable_recovery-93a0dd2019f693673996d00e77e8ea7b3c6ca1db.tar
android_bootable_recovery-93a0dd2019f693673996d00e77e8ea7b3c6ca1db.tar.gz
android_bootable_recovery-93a0dd2019f693673996d00e77e8ea7b3c6ca1db.tar.bz2
android_bootable_recovery-93a0dd2019f693673996d00e77e8ea7b3c6ca1db.tar.lz
android_bootable_recovery-93a0dd2019f693673996d00e77e8ea7b3c6ca1db.tar.xz
android_bootable_recovery-93a0dd2019f693673996d00e77e8ea7b3c6ca1db.tar.zst
android_bootable_recovery-93a0dd2019f693673996d00e77e8ea7b3c6ca1db.zip
Diffstat (limited to '')
-rw-r--r--update_verifier/Android.mk24
1 files changed, 24 insertions, 0 deletions
diff --git a/update_verifier/Android.mk b/update_verifier/Android.mk
new file mode 100644
index 000000000..0bb054777
--- /dev/null
+++ b/update_verifier/Android.mk
@@ -0,0 +1,24 @@
+# Copyright (C) 2015 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 := update_verifier.cpp
+LOCAL_MODULE := update_verifier
+LOCAL_SHARED_LIBRARIES := libcutils libhardware
+
+include $(BUILD_EXECUTABLE)