Schedtune was an out of tree cgroup controller present in Android kernels up to 4.19. It was replaced with uclamp and the cpu controller. Now that 4.19 is EOL and unsupported, and schedtune is not present in any supported Android kernels, remove the userspace support for schedtune. Bug: 362504801 Change-Id: If8baaf1a616984c5dbaac1bbd03e23ad001bc29c
107 lines
2.3 KiB
Text
107 lines
2.3 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.
|
|
|
|
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "cgroups.json",
|
|
src: "cgroups.json",
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "cgroups.recovery.json",
|
|
filename: "cgroups.json",
|
|
recovery: true,
|
|
src: "cgroups.recovery.json",
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "task_profiles.json",
|
|
src: "task_profiles.json",
|
|
}
|
|
|
|
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",
|
|
],
|
|
}
|
|
|
|
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",
|
|
],
|
|
}
|