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

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

Merge "Convert to Soong"

am: c6fd8bb6

Change-Id: I4811ff85664d160d04bd7da1a0fff3822cde5ec3
parents 52dcea71 c6fd8bb6
Loading
Loading
Loading
Loading

cmds/rawbu/Android.bp

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

cc_binary {
    name: "rawbu",

    srcs: ["backup.cpp"],

    cflags: [
        "-Wall",
        "-Werror",
    ],

    shared_libs: ["libcutils"],
}

cmds/rawbu/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_CFLAGS := -Wall -Werror

LOCAL_SHARED_LIBRARIES := libcutils libc

LOCAL_MODULE:= rawbu

LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
LOCAL_MODULE_TAGS := debug

include $(BUILD_EXECUTABLE)