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

Commit e250fd84 authored by Yifan Hong's avatar Yifan Hong
Browse files

libqemu: Android.mk -> bp

Test: mma

Bug: 37512442
Change-Id: I96f482b3f7734ca217084104b9b733d33459d635
parent fd79f01b
Loading
Loading
Loading
Loading

qemu_pipe/Android.bp

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

cc_library_static {
    name: "libqemu_pipe",
    sanitize: {
        misc_undefined: ["integer"],
    },
    srcs: ["qemu_pipe.cpp"],
    local_include_dirs: ["include"],
    static_libs: ["libbase"],
    export_include_dirs: ["include"],
    cflags: ["-Werror"],
}

qemu_pipe/Android.mk

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

LOCAL_PATH:= $(call my-dir)

common_static_libraries := \
    libbase
include $(CLEAR_VARS)
LOCAL_CLANG := true
LOCAL_SANITIZE := integer
LOCAL_SRC_FILES:= \
    qemu_pipe.cpp
LOCAL_C_INCLUDES := \
    $(LOCAL_PATH)/include \
    system/base/include
LOCAL_MODULE:= libqemu_pipe
LOCAL_STATIC_LIBRARIES := $(common_static_libraries)
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
LOCAL_CFLAGS := -Werror
include $(BUILD_STATIC_LIBRARY)