2016-10-29 00:23:25 +02:00
|
|
|
//
|
|
|
|
// Copyright (C) 2015 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.
|
|
|
|
//
|
|
|
|
|
2017-10-03 00:20:07 +02:00
|
|
|
cc_defaults {
|
|
|
|
name: "libprocinfo_defaults",
|
2018-02-17 02:58:14 +01:00
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
|
|
|
"-Wextra",
|
|
|
|
],
|
2017-10-03 00:20:07 +02:00
|
|
|
}
|
2016-10-29 00:23:25 +02:00
|
|
|
|
|
|
|
cc_library {
|
|
|
|
name: "libprocinfo",
|
2017-10-03 00:20:07 +02:00
|
|
|
defaults: ["libprocinfo_defaults"],
|
2017-05-17 23:15:06 +02:00
|
|
|
vendor_available: true,
|
2018-05-24 07:11:00 +02:00
|
|
|
recovery_available: true,
|
2017-07-24 08:19:45 +02:00
|
|
|
vndk: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
2016-10-29 00:23:25 +02:00
|
|
|
host_supported: true,
|
|
|
|
srcs: [
|
|
|
|
"process.cpp",
|
2019-08-16 19:49:34 +02:00
|
|
|
"process_map.cpp",
|
2016-10-29 00:23:25 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
local_include_dirs: ["include"],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
shared_libs: ["libbase"],
|
|
|
|
target: {
|
|
|
|
darwin: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
2017-03-15 23:23:36 +01:00
|
|
|
linux_bionic: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
2016-10-29 00:23:25 +02:00
|
|
|
windows: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tests
|
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
cc_test {
|
|
|
|
name: "libprocinfo_test",
|
2017-10-03 00:20:07 +02:00
|
|
|
defaults: ["libprocinfo_defaults"],
|
2016-10-29 00:23:25 +02:00
|
|
|
host_supported: true,
|
2019-08-16 19:49:34 +02:00
|
|
|
isolated: true,
|
2016-10-29 00:23:25 +02:00
|
|
|
srcs: [
|
|
|
|
"process_test.cpp",
|
2018-05-11 02:19:12 +02:00
|
|
|
"process_map_test.cpp",
|
2016-10-29 00:23:25 +02:00
|
|
|
],
|
|
|
|
target: {
|
|
|
|
darwin: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
windows: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2018-02-17 02:58:14 +01:00
|
|
|
shared_libs: [
|
|
|
|
"libbase",
|
|
|
|
"libprocinfo",
|
|
|
|
],
|
2016-10-29 00:23:25 +02:00
|
|
|
|
|
|
|
compile_multilib: "both",
|
|
|
|
multilib: {
|
|
|
|
lib32: {
|
|
|
|
suffix: "32",
|
|
|
|
},
|
|
|
|
lib64: {
|
|
|
|
suffix: "64",
|
|
|
|
},
|
|
|
|
},
|
2018-04-28 01:12:06 +02:00
|
|
|
|
2018-05-11 02:19:12 +02:00
|
|
|
data: [
|
|
|
|
"testdata/*",
|
|
|
|
],
|
|
|
|
|
2018-04-28 01:12:06 +02:00
|
|
|
test_suites: ["device-tests"],
|
2016-10-29 00:23:25 +02:00
|
|
|
}
|
2018-05-11 02:19:12 +02:00
|
|
|
|
|
|
|
cc_benchmark {
|
|
|
|
name: "libprocinfo_benchmark",
|
|
|
|
defaults: ["libprocinfo_defaults"],
|
|
|
|
srcs: [
|
|
|
|
"process_map_benchmark.cpp",
|
|
|
|
],
|
|
|
|
shared_libs: [
|
|
|
|
"libbacktrace",
|
|
|
|
"libbase",
|
|
|
|
"libprocinfo",
|
|
|
|
"libunwindstack",
|
|
|
|
],
|
|
|
|
compile_multilib: "both",
|
|
|
|
multilib: {
|
|
|
|
lib32: {
|
|
|
|
suffix: "32",
|
|
|
|
},
|
|
|
|
lib64: {
|
|
|
|
suffix: "64",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
data: [
|
|
|
|
"testdata/*",
|
|
|
|
],
|
|
|
|
}
|