a377ff0d4a
Arguably, we don't need a ScopedMinijail for a program that only execs, but I'd rather keep the code consistent and have all uses of Minijail be good examples. Bug: 30156807 Change-Id: I08a968835e0f3e2afcd5e7736626edbed658cde2
8 lines
232 B
Makefile
8 lines
232 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_CFLAGS := -Wall -Werror
|
|
LOCAL_MODULE := run-as
|
|
LOCAL_SHARED_LIBRARIES := libselinux libpackagelistparser libminijail
|
|
LOCAL_SRC_FILES := run-as.cpp
|
|
include $(BUILD_EXECUTABLE)
|