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

Commit 35ea9f85 authored by Dan Willemsen's avatar Dan Willemsen Committed by android-build-merger
Browse files

resolve merge conflicts of 0783d5fc to stage-aosp-master

am: 2a001e8b

Change-Id: Ib0fc16f4a35761c0b2a3e3273800e1f27e527577
parents fb4a57b5 2a001e8b
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