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

Commit 4830ba0f authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Convert Android.mk file to Android.bp"

parents 6600f978 3a62fc44
Loading
Loading
Loading
Loading

Android.mk

deleted100644 → 0
+0 −18
Original line number Diff line number Diff line
#
# Copyright (C) 2008 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
LOCAL_PATH := $(my-dir)

include $(call first-makefiles-under,$(LOCAL_PATH))
+15 −0
Original line number Diff line number Diff line
@@ -67,3 +67,18 @@ cc_binary_host {

    cflags: ["-Werror"],
}

python_binary_host {
    name: "simg_dump.py",
    main: "simg_dump.py",
    srcs: ["simg_dump.py"],
    version: {
        py2: {
            embedded_launcher: true,
            enabled: true,
        },
        py3: {
            enabled: false,
        },
    },
}

libsparse/Android.mk

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

LOCAL_PATH:= $(call my-dir)

include $(CLEAR_VARS)
LOCAL_MODULE := simg_dump.py
LOCAL_SRC_FILES := simg_dump.py
LOCAL_MODULE_CLASS := EXECUTABLES
LOCAL_IS_HOST_MODULE := true
LOCAL_CFLAGS := -Werror
include $(BUILD_PREBUILT)
+7 −0
Original line number Diff line number Diff line
@@ -79,3 +79,10 @@ cc_binary {

    cflags: ["-Werror"],
}


prebuilt_etc {
    name: "logtagd.rc",
    src: "logtagd.rc",
    sub_dir: "init",
}

logd/Android.mk

deleted100644 → 0
+0 −10
Original line number Diff line number Diff line
LOCAL_PATH:= $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE := logtagd.rc
LOCAL_SRC_FILES := $(LOCAL_MODULE)
LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/init

include $(BUILD_PREBUILT)