diff options
author | Tao Bao <tbao@google.com> | 2015-12-08 20:25:26 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-12-08 20:25:26 +0100 |
commit | ddde4676b6c0e175699115a67e44f09a665439b5 (patch) | |
tree | 1f18a2ee459fc5e13f4a6571c7c545c5947ed10b /update_verifier/Android.mk | |
parent | Merge "updater: Replace strtok() with android::base::Split()." (diff) | |
parent | update_verifier: Log to logd instead of kernel log. (diff) | |
download | android_bootable_recovery-ddde4676b6c0e175699115a67e44f09a665439b5.tar android_bootable_recovery-ddde4676b6c0e175699115a67e44f09a665439b5.tar.gz android_bootable_recovery-ddde4676b6c0e175699115a67e44f09a665439b5.tar.bz2 android_bootable_recovery-ddde4676b6c0e175699115a67e44f09a665439b5.tar.lz android_bootable_recovery-ddde4676b6c0e175699115a67e44f09a665439b5.tar.xz android_bootable_recovery-ddde4676b6c0e175699115a67e44f09a665439b5.tar.zst android_bootable_recovery-ddde4676b6c0e175699115a67e44f09a665439b5.zip |
Diffstat (limited to 'update_verifier/Android.mk')
-rw-r--r-- | update_verifier/Android.mk | 24 |
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..7f28bcedc --- /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 := libhardware liblog + +include $(BUILD_EXECUTABLE) |