Convert cmds/device_config/Android.mk file to Android.bp

See build/soong/README.md for more information.

Bug: 122332340
Test: treehugger
Change-Id: If9d673fa95b2adf7ea494c138960612ffad8e59f
This commit is contained in:
Sasha Smundak
2020-05-18 10:53:40 -07:00
parent 9b128b9d1b
commit bf815330eb
2 changed files with 7 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
// Copyright 2018 The Android Open Source Project
//
sh_binary {
name: "device_config",
src: "device_config",
}

View File

@@ -1,10 +0,0 @@
# Copyright 2018 The Android Open Source Project
#
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := device_config
LOCAL_SRC_FILES := device_config
LOCAL_MODULE_CLASS := EXECUTABLES
LOCAL_MODULE_TAGS := optional
include $(BUILD_PREBUILT)