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

Commit f697bba2 authored by Dan Willemsen's avatar Dan Willemsen
Browse files

resolve merge conflicts of 35ea9f85 to nyc-mr1-dev-plus-aosp

Change-Id: I6f0ff0ecfd9c91adc46c059bab440aab6d666e62
parents 1a688d06 35ea9f85
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