Skip to content
Snippets Groups Projects
Commit 36c38293 authored by dianlujitao's avatar dianlujitao Committed by Dhina17
Browse files

onclite: Convert libinit_onclite to blueprint


Change-Id: I990a4d2c68cd51f0043390408c3b128c4bb20900
Signed-off-by: default avatarDhina17 <dhinalogu@gmail.com>
parent 5176f727
No related branches found
No related tags found
No related merge requests found
//
// Copyright (C) 2019 The LineageOS 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.
//
cc_library_static {
name: "libinit_onclite",
recovery_available: true,
srcs: ["init_onclite.cpp"],
whole_static_libs: ["libbase","libselinux"],
include_dirs: [
"system/core/base/include",
"system/core/init"
]
}
#
# Copyright (C) 2016 The CyanogenMod 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 := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_C_INCLUDES := system/core/init
LOCAL_MODULE := libinit_onclite
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := init_onclite.cpp
LOCAL_STATIC_LIBRARIES := libbase libselinux
include $(BUILD_STATIC_LIBRARY)
......@@ -31,7 +31,7 @@
#include "vendor_init.h"
#include "property_service.h"
#include "log.h"
#include "android/log.h"
char const *heapgrowthlimit;
char const *heapminfree;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment