2018-04-27 13:16:32 +02:00
|
|
|
// Copyright (C) 2018 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.
|
|
|
|
|
2018-11-19 08:26:16 +01:00
|
|
|
cc_defaults {
|
|
|
|
name: "idmap2_defaults",
|
2018-04-27 13:16:32 +02:00
|
|
|
tidy: true,
|
Use `tidy_checks_as_errors` list instead of `-warnings-as-errors=*`
This fixes a build break due to new code from
http://ag/I96f970e82b5243be01b205ac2cb6ab249c6100bc that inadvertently
triggers some false positives with other clang-tidy flags. Builds that
use a wider set of tidy flags (as specified in the test below) will
break since `-warnings-as-errors=*` turns all warnings into errors,
rather than just the ones that were specified as part of this
Android.bp. The preferred way of checking this is to use
`tidy_checks_as_errors`
Bug: 119328308
Test: WITH_TIDY=1 DEFAULT_GLOBAL_TIDY_CHECKS=*,-readability-*,-google-readability-*,-google-runtime-references,-cppcoreguidelines-*,-modernize-*,-llvm-*,-bugprone-narrowing-conversions,-misc-non-private-member-variables-in-classes,-misc-unused-parameters,-hicpp-*,-fuchsia-* mm
Change-Id: I941b3c89402e2cfa290b3829e2ac8ff7ea67ca3d
Merged-In: I941b3c89402e2cfa290b3829e2ac8ff7ea67ca3d
(cherry picked from commit 0bc64543270b16e1953b399dc73fa739132a6e5f)
2020-06-09 00:13:57 -07:00
|
|
|
tidy_checks_as_errors: [
|
2019-01-29 12:01:24 -08:00
|
|
|
"modernize-*",
|
|
|
|
"-modernize-avoid-c-arrays",
|
2019-07-27 14:43:50 -07:00
|
|
|
"-modernize-use-trailing-return-type",
|
2018-11-19 08:26:16 +01:00
|
|
|
"android-*",
|
|
|
|
"misc-*",
|
|
|
|
"readability-*",
|
|
|
|
],
|
2018-04-27 13:16:32 +02:00
|
|
|
tidy_flags: [
|
|
|
|
"-system-headers",
|
|
|
|
],
|
2018-11-19 08:26:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "libidmap2",
|
|
|
|
defaults: [
|
|
|
|
"idmap2_defaults",
|
|
|
|
],
|
|
|
|
host_supported: true,
|
2018-04-27 13:16:32 +02:00
|
|
|
srcs: [
|
|
|
|
"libidmap2/BinaryStreamVisitor.cpp",
|
|
|
|
"libidmap2/CommandLineOptions.cpp",
|
|
|
|
"libidmap2/FileUtils.cpp",
|
|
|
|
"libidmap2/Idmap.cpp",
|
2019-01-07 17:26:25 -08:00
|
|
|
"libidmap2/Policies.cpp",
|
2018-04-27 13:16:32 +02:00
|
|
|
"libidmap2/PrettyPrintVisitor.cpp",
|
|
|
|
"libidmap2/RawPrintVisitor.cpp",
|
|
|
|
"libidmap2/ResourceUtils.cpp",
|
2019-01-28 08:49:12 +01:00
|
|
|
"libidmap2/Result.cpp",
|
2018-04-27 13:16:32 +02:00
|
|
|
"libidmap2/Xml.cpp",
|
|
|
|
"libidmap2/ZipFile.cpp",
|
|
|
|
],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
static: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
shared_libs: [
|
|
|
|
"libandroidfw",
|
|
|
|
"libbase",
|
2018-11-30 16:22:05 +01:00
|
|
|
"libcutils",
|
2018-04-27 13:16:32 +02:00
|
|
|
"libutils",
|
|
|
|
"libziparchive",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
host: {
|
|
|
|
shared: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
static_libs: [
|
|
|
|
"libandroidfw",
|
|
|
|
"libbase",
|
2019-09-18 12:58:11 -07:00
|
|
|
"libcutils",
|
2018-04-27 13:16:32 +02:00
|
|
|
"libutils",
|
|
|
|
"libziparchive",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_test {
|
|
|
|
name: "idmap2_tests",
|
2018-11-19 08:26:16 +01:00
|
|
|
defaults: [
|
|
|
|
"idmap2_defaults",
|
|
|
|
],
|
|
|
|
tidy_checks: [
|
|
|
|
"-readability-magic-numbers",
|
2018-04-27 13:16:32 +02:00
|
|
|
],
|
2018-11-19 08:26:16 +01:00
|
|
|
host_supported: true,
|
2019-03-29 14:55:51 -07:00
|
|
|
test_suites: ["general-tests"],
|
2018-04-27 13:16:32 +02:00
|
|
|
srcs: [
|
|
|
|
"tests/BinaryStreamVisitorTests.cpp",
|
|
|
|
"tests/CommandLineOptionsTests.cpp",
|
|
|
|
"tests/FileUtilsTests.cpp",
|
|
|
|
"tests/Idmap2BinaryTests.cpp",
|
|
|
|
"tests/IdmapTests.cpp",
|
|
|
|
"tests/Main.cpp",
|
2019-01-07 17:26:25 -08:00
|
|
|
"tests/PoliciesTests.cpp",
|
2018-04-27 13:16:32 +02:00
|
|
|
"tests/PrettyPrintVisitorTests.cpp",
|
|
|
|
"tests/RawPrintVisitorTests.cpp",
|
|
|
|
"tests/ResourceUtilsTests.cpp",
|
2019-01-28 08:49:12 +01:00
|
|
|
"tests/ResultTests.cpp",
|
2018-04-27 13:16:32 +02:00
|
|
|
"tests/XmlTests.cpp",
|
|
|
|
"tests/ZipFileTests.cpp",
|
|
|
|
],
|
|
|
|
required: [
|
|
|
|
"idmap2",
|
|
|
|
],
|
|
|
|
static_libs: ["libgmock"],
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
shared_libs: [
|
|
|
|
"libandroidfw",
|
|
|
|
"libbase",
|
|
|
|
"libidmap2",
|
|
|
|
"liblog",
|
|
|
|
"libutils",
|
|
|
|
"libz",
|
|
|
|
"libziparchive",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
host: {
|
|
|
|
static_libs: [
|
|
|
|
"libandroidfw",
|
|
|
|
"libbase",
|
2019-09-18 12:58:11 -07:00
|
|
|
"libcutils",
|
2018-04-27 13:16:32 +02:00
|
|
|
"libidmap2",
|
|
|
|
"liblog",
|
|
|
|
"libutils",
|
|
|
|
"libziparchive",
|
|
|
|
],
|
|
|
|
shared_libs: [
|
|
|
|
"libz",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data: ["tests/data/**/*.apk"],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_binary {
|
|
|
|
name: "idmap2",
|
2018-11-19 08:26:16 +01:00
|
|
|
defaults: [
|
|
|
|
"idmap2_defaults",
|
2018-04-27 13:16:32 +02:00
|
|
|
],
|
2018-11-19 08:26:16 +01:00
|
|
|
host_supported: true,
|
2018-04-27 13:16:32 +02:00
|
|
|
srcs: [
|
|
|
|
"idmap2/Create.cpp",
|
|
|
|
"idmap2/Dump.cpp",
|
|
|
|
"idmap2/Lookup.cpp",
|
|
|
|
"idmap2/Main.cpp",
|
|
|
|
"idmap2/Scan.cpp",
|
|
|
|
"idmap2/Verify.cpp",
|
|
|
|
],
|
|
|
|
target: {
|
|
|
|
android: {
|
|
|
|
shared_libs: [
|
|
|
|
"libandroidfw",
|
|
|
|
"libbase",
|
2018-11-30 16:22:05 +01:00
|
|
|
"libcutils",
|
2018-04-27 13:16:32 +02:00
|
|
|
"libidmap2",
|
|
|
|
"libutils",
|
|
|
|
"libziparchive",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
host: {
|
|
|
|
static_libs: [
|
|
|
|
"libandroidfw",
|
|
|
|
"libbase",
|
2019-09-18 12:58:11 -07:00
|
|
|
"libcutils",
|
2018-04-27 13:16:32 +02:00
|
|
|
"libidmap2",
|
|
|
|
"liblog",
|
|
|
|
"libutils",
|
|
|
|
"libziparchive",
|
|
|
|
],
|
|
|
|
shared_libs: [
|
|
|
|
"libz",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_binary {
|
|
|
|
name: "idmap2d",
|
2018-11-19 08:26:16 +01:00
|
|
|
defaults: [
|
|
|
|
"idmap2_defaults",
|
2018-04-27 13:16:32 +02:00
|
|
|
],
|
2018-11-19 08:26:16 +01:00
|
|
|
host_supported: false,
|
2018-04-27 13:16:32 +02:00
|
|
|
srcs: [
|
|
|
|
"idmap2d/Idmap2Service.cpp",
|
|
|
|
"idmap2d/Main.cpp",
|
|
|
|
],
|
|
|
|
shared_libs: [
|
|
|
|
"libandroidfw",
|
|
|
|
"libbase",
|
|
|
|
"libbinder",
|
|
|
|
"libcutils",
|
|
|
|
"libidmap2",
|
|
|
|
"libutils",
|
|
|
|
"libziparchive",
|
|
|
|
],
|
2018-11-19 08:26:16 +01:00
|
|
|
static_libs: [
|
|
|
|
"libidmap2daidl",
|
|
|
|
],
|
2018-09-21 09:58:10 +02:00
|
|
|
init_rc: ["idmap2d/idmap2d.rc"],
|
2018-04-27 13:16:32 +02:00
|
|
|
}
|
|
|
|
|
2018-11-19 08:26:16 +01:00
|
|
|
cc_library_static {
|
|
|
|
name: "libidmap2daidl",
|
|
|
|
defaults: [
|
|
|
|
"idmap2_defaults",
|
|
|
|
],
|
|
|
|
tidy: false,
|
|
|
|
host_supported: false,
|
|
|
|
srcs: [
|
|
|
|
":idmap2_aidl",
|
|
|
|
],
|
|
|
|
shared_libs: [
|
|
|
|
"libbase",
|
|
|
|
],
|
|
|
|
aidl: {
|
|
|
|
export_aidl_headers: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-04-27 13:16:32 +02:00
|
|
|
filegroup {
|
|
|
|
name: "idmap2_aidl",
|
|
|
|
srcs: [
|
|
|
|
"idmap2d/aidl/android/os/IIdmap2.aidl",
|
|
|
|
],
|
2019-06-08 08:42:07 -07:00
|
|
|
path: "idmap2d/aidl",
|
2018-04-27 13:16:32 +02:00
|
|
|
}
|