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

Commit 61497399 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

Change-Id: I8a36b21a97daf698ef7eabd3a840dd06f988f075
parents a2f5b6ca e4ed25ce
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)