mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
This CL adds a code for printing log messages in clients-side utility
library functions (getXXX) for configstore so that the developer can
figure out which configuration values are actually retrieved from the configstore.
Bug: 36275627
Test: Built and check the log message appears
Change-Id: I7d5d80ca7a0317816c71016e013f9e73ad23ee08
Merged-In: I2c0895f8afbbb2947b62164acaf62a491c451dc0
(cherry picked from commit 0dc72ecbb7)
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
//
|
|
// Copyright (C) 2017 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_library_shared {
|
|
name: "android.hardware.configstore-utils",
|
|
defaults: ["hidl_defaults"],
|
|
|
|
srcs: [ "ConfigStoreUtils.cpp" ],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
shared_libs: [
|
|
"android.hardware.configstore@1.0",
|
|
"libbase",
|
|
"libhidlbase"
|
|
],
|
|
export_shared_lib_headers: [
|
|
"android.hardware.configstore@1.0",
|
|
"libbase",
|
|
"libhidlbase"
|
|
],
|
|
}
|