Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df487d3b authored by android-build-prod (mdb)'s avatar android-build-prod (mdb) Committed by android-build-merger
Browse files

Merge "Convert to Soong" am: b466949e am: e4ed25ce

am: 61497399

Change-Id: I1f0f2276e21ab46a7f0fed2f9e287b5f21b070cc
parents 231c5dd9 61497399
Loading
Loading
Loading
Loading

cmds/backup/Android.bp

0 → 100644
+20 −0
Original line number Diff line number Diff line
// Copyright 2009 The Android Open Source Project

cc_binary {
    name: "btool",

    srcs: ["backup.cpp"],

    shared_libs: [
        "libcutils",
        "libutils",
        "libandroidfw",
    ],

    cflags: [
        "-Wall",
        "-Werror",
        "-Wunused",
        "-Wunreachable-code",
    ],
}

cmds/backup/Android.mk

deleted100644 → 0
+0 −17
Original line number Diff line number Diff line
# Copyright 2009 The Android Open Source Project

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= backup.cpp

LOCAL_SHARED_LIBRARIES := libcutils libutils libandroidfw

LOCAL_MODULE:= btool

LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
LOCAL_MODULE_TAGS := optional

LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code

include $(BUILD_EXECUTABLE)