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

Commit 0783d5fc authored by Dan Willemsen's avatar Dan Willemsen Committed by Gerrit Code Review
Browse files

Merge "Start converting Android.mk to Android.bp"

parents 1c59b4b4 59e086f5
Loading
Loading
Loading
Loading

Android.bp

0 → 100644
+6 −0
Original line number Diff line number Diff line
subdirs = [
    "cmds/*",
    "libs/*",
    "opengl/*",
    "services/*",
]

cmds/atrace/Android.bp

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

cc_binary {
    name: "atrace",
    srcs: ["atrace.cpp"],

    shared_libs: [
        "libbinder",
        "libcutils",
        "libutils",
        "libz",
        "libbase",
    ],

    init_rc: ["atrace.rc"],
}

cmds/atrace/Android.mk

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

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

LOCAL_SRC_FILES:= atrace.cpp

LOCAL_C_INCLUDES += external/zlib

LOCAL_MODULE:= atrace

LOCAL_MODULE_TAGS:= optional

LOCAL_SHARED_LIBRARIES := \
    libbinder \
    libcutils \
    libutils \
    libz \
    libbase

LOCAL_INIT_RC := atrace.rc

include $(BUILD_EXECUTABLE)
+6 −0
Original line number Diff line number Diff line
cc_binary {
    name: "bugreport",
    srcs: ["bugreport.cpp"],
    cflags: ["-Wall"],
    shared_libs: ["libcutils"],
}

cmds/bugreport/Android.mk

deleted100644 → 0
+0 −12
Original line number Diff line number Diff line
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= bugreport.cpp

LOCAL_MODULE:= bugreport

LOCAL_CFLAGS := -Wall

LOCAL_SHARED_LIBRARIES := libcutils

include $(BUILD_EXECUTABLE)
Loading