// 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. cc_defaults { name: "system_suspend_defaults", shared_libs: [ "libbase", "libbinder", "libcutils", "libhidlbase", "libhidltransport", "libhwbinder", "liblog", "libutils", ], cflags: [ "-Wall", "-Werror", ], cpp_std: "c++17", } cc_defaults { name: "system_suspend_stats_defaults", shared_libs: [ "libprotobuf-cpp-full", ], static_libs: ["SystemSuspendStatsProto"], cflags: [ "-Wall", "-Werror", "-Wno-unused-parameter", ], } cc_library { name: "SystemSuspendStatsProto", srcs: [ "SystemSuspendStats.proto", ], proto: { export_proto_headers: true, type: "full", }, cflags: [ "-Wall", "-Werror", "-Wno-unused-parameter", ], } cc_binary { name: "android.system.suspend@1.0-service", relative_install_path: "hw", defaults: [ "system_suspend_defaults", "system_suspend_stats_defaults", ], init_rc: ["android.system.suspend@1.0-service.rc"], vintf_fragments: ["android.system.suspend@1.0-service.xml"], shared_libs: [ "android.system.suspend@1.0", "suspend_control_aidl_interface-cpp", ], static_libs: ["SystemSuspendStatsProto"], srcs: [ "main.cpp", "SuspendControlService.cpp", "SystemSuspend.cpp", ], } // Unit tests for ISystemSuspend implementation. // Do *NOT* use for compliance with *TS. cc_test { name: "SystemSuspendV1_0UnitTest", defaults: [ "system_suspend_defaults", "system_suspend_stats_defaults", ], static_libs: [ "android.system.suspend@1.0", "suspend_control_aidl_interface-cpp", "libgmock", ], srcs: [ "SuspendControlService.cpp", "SystemSuspend.cpp", "SystemSuspendUnitTest.cpp" ], test_suites: ["device-tests"], }