mirror of
https://github.com/Evolution-X-Devices/device_google_taimen
synced 2026-01-27 15:59:12 +00:00
This is a squash of the following: Author: LuK1337 <priv.luk@gmail.com> Date: Sun Sep 27 16:12:10 2020 +0200 wahoo: gpt-utils: Drop unnecessary include * When using generated_kernel_headers including stdio.h will cause errors due to redefined macros. Change-Id: I2f753a64f760b636be1325873e17697466fbf33d Author: LuK1337 <priv.luk@gmail.com> Date: Mon Sep 9 22:38:02 2019 +0200 wahoo: gpt-utils: Drop unnecessary include * When using generated_kernel_headers including asm/byteorder.h will cause a warning due to unused static functions. Change-Id: I2a74ec92487c13c4645048c96da8cb92b3cbd9f0 Author: Rashed Abdel-Tawab <rashed@linux.com> Date: Sun Sep 29 15:37:38 2019 -0400 wahoo: Switch gpt-utils to generated_kernel_headers Change-Id: Ia6e2f7e140e6ffbd3a93dd823f836aaf399d03fb Change-Id: Ia1f608778b5b37fec770abbf185c5e313cd5ba16
39 lines
1010 B
Plaintext
39 lines
1010 B
Plaintext
//
|
|
// Copyright (C) 2016 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.
|
|
//
|
|
|
|
cc_library {
|
|
name: "libgptutils.msm8998",
|
|
vendor: true,
|
|
recovery_available: true,
|
|
shared_libs: [
|
|
"libcutils",
|
|
"liblog",
|
|
"libz",
|
|
],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
srcs: [
|
|
"gpt-utils.cpp",
|
|
],
|
|
owner: "qti",
|
|
header_libs: [
|
|
"generated_kernel_headers",
|
|
],
|
|
export_include_dirs: ["."],
|
|
}
|