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

Commit c6fd8bb6 authored by android-build-prod (mdb)'s avatar android-build-prod (mdb) Committed by Gerrit Code Review
Browse files

Merge "Convert to Soong"

parents a60de57f f905ecab
Loading
Loading
Loading
Loading

cmds/rawbu/Android.bp

0 → 100644
+14 −0
Original line number Original line 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 Original line 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)