When task profiles changes happen, devices released under older API levels might have to use the same profiles as before. This might be due to for missing kernel features or some other reasons. Add support for per-API task profiles to accommodate this scenario. With this mechanism when ro.product.first_api_level is non-empty, the system looks for /system/etc/profiles/task_profiles_<api level>.json file and uses it if it exists. If ro.product.first_api_level is not defined or per-API task profiles file does not exist the system falls back to the default /system/etc/profiles/task_profiles.json file. As before, these task profiles can be competely overwritten using /vendor/etc/task_profiles.json if needed. Bug: 172066799 Test: boot with per-API task profiles Signed-off-by: Suren Baghdasaryan <surenb@google.com> Change-Id: I1671b341b3a0fb5e99d0b0788315c61088326b09
152 lines
3.2 KiB
Text
152 lines
3.2 KiB
Text
// Copyright (C) 2019 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.
|
|
|
|
prebuilt_etc {
|
|
name: "cgroups.json",
|
|
src: "cgroups.json",
|
|
required: [
|
|
"cgroups_28.json",
|
|
"cgroups_29.json",
|
|
"cgroups_30.json",
|
|
],
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "cgroups.recovery.json",
|
|
filename: "cgroups.json",
|
|
recovery: true,
|
|
src: "cgroups.recovery.json",
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "cgroups_28.json",
|
|
src: "cgroups_28.json",
|
|
sub_dir: "task_profiles",
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "cgroups_29.json",
|
|
src: "cgroups_29.json",
|
|
sub_dir: "task_profiles",
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "cgroups_30.json",
|
|
src: "cgroups_30.json",
|
|
sub_dir: "task_profiles",
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "task_profiles.json",
|
|
src: "task_profiles.json",
|
|
required: [
|
|
"task_profiles_28.json",
|
|
"task_profiles_29.json",
|
|
"task_profiles_30.json",
|
|
],
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "task_profiles_28.json",
|
|
src: "task_profiles_28.json",
|
|
sub_dir: "task_profiles",
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "task_profiles_29.json",
|
|
src: "task_profiles_29.json",
|
|
sub_dir: "task_profiles",
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "task_profiles_30.json",
|
|
src: "task_profiles_30.json",
|
|
sub_dir: "task_profiles",
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "libprocessgroup_test_defaults",
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
|
|
// Needed for headers from libprotobuf.
|
|
"-Wno-unused-parameter",
|
|
],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libprocessgroup_proto",
|
|
host_supported: true,
|
|
defaults: ["libprocessgroup_test_defaults"],
|
|
srcs: [
|
|
"cgroups.proto",
|
|
"task_profiles.proto",
|
|
],
|
|
proto: {
|
|
type: "full",
|
|
export_proto_headers: true,
|
|
},
|
|
}
|
|
|
|
cc_test_host {
|
|
name: "libprocessgroup_proto_test",
|
|
defaults: ["libprocessgroup_test_defaults"],
|
|
srcs: [
|
|
"test.cpp",
|
|
],
|
|
static_libs: [
|
|
"libbase",
|
|
"libgmock",
|
|
"liblog",
|
|
"libjsoncpp",
|
|
"libjsonpbverify",
|
|
"libjsonpbparse",
|
|
"libprocessgroup_proto",
|
|
],
|
|
shared_libs: [
|
|
"libprotobuf-cpp-full",
|
|
],
|
|
data: [
|
|
"cgroups.json",
|
|
"cgroups.recovery.json",
|
|
"task_profiles.json",
|
|
],
|
|
test_suites: [
|
|
"general-tests",
|
|
],
|
|
}
|
|
|
|
cc_test {
|
|
name: "vts_processgroup_validate_test",
|
|
defaults: ["libprocessgroup_test_defaults"],
|
|
srcs: [
|
|
"test_vendor.cpp",
|
|
],
|
|
static_libs: [
|
|
"libbase",
|
|
"libgmock",
|
|
"liblog",
|
|
"libjsoncpp",
|
|
"libjsonpbverify",
|
|
"libjsonpbparse",
|
|
"libprocessgroup_proto",
|
|
],
|
|
shared_libs: [
|
|
"libprotobuf-cpp-full",
|
|
],
|
|
test_suites: [
|
|
"vts",
|
|
],
|
|
}
|