summaryrefslogtreecommitdiffstats
path: root/update_verifier/Android.mk
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-12-06 06:21:27 +0100
committerTao Bao <tbao@google.com>2015-12-08 20:24:11 +0100
commit7197ee0e39bebea3a1bbe5d980f4dbf1cfe58136 (patch)
tree950da26b6e000666b9a77bab67bbe41d90929468 /update_verifier/Android.mk
parentMerge "updater: Replace strtok() with android::base::Split()." (diff)
downloadandroid_bootable_recovery-7197ee0e39bebea3a1bbe5d980f4dbf1cfe58136.tar
android_bootable_recovery-7197ee0e39bebea3a1bbe5d980f4dbf1cfe58136.tar.gz
android_bootable_recovery-7197ee0e39bebea3a1bbe5d980f4dbf1cfe58136.tar.bz2
android_bootable_recovery-7197ee0e39bebea3a1bbe5d980f4dbf1cfe58136.tar.lz
android_bootable_recovery-7197ee0e39bebea3a1bbe5d980f4dbf1cfe58136.tar.xz
android_bootable_recovery-7197ee0e39bebea3a1bbe5d980f4dbf1cfe58136.tar.zst
android_bootable_recovery-7197ee0e39bebea3a1bbe5d980f4dbf1cfe58136.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)