2017-01-23 11:09:02 +01:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
|
2021-02-23 23:26:20 +01:00
|
|
|
package {
|
|
|
|
// See: http://go/android-license-faq
|
|
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
|
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
|
|
|
// to get the below license kinds:
|
|
|
|
// SPDX-license-identifier-Apache-2.0
|
|
|
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
|
|
|
}
|
|
|
|
|
2017-03-24 06:08:24 +01:00
|
|
|
cc_library_shared {
|
2017-01-23 11:09:02 +01:00
|
|
|
name: "android.hardware.configstore-utils",
|
2017-04-28 03:32:39 +02:00
|
|
|
vendor_available: true,
|
2017-08-04 08:02:42 +02:00
|
|
|
vndk: {
|
|
|
|
enabled: true,
|
|
|
|
},
|
2018-04-09 05:19:43 +02:00
|
|
|
double_loadable: true,
|
2017-02-27 05:43:11 +01:00
|
|
|
defaults: ["hidl_defaults"],
|
2017-03-24 06:08:24 +01:00
|
|
|
|
|
|
|
srcs: [ "ConfigStoreUtils.cpp" ],
|
|
|
|
|
2017-01-23 11:09:02 +01:00
|
|
|
export_include_dirs: ["include"],
|
2017-03-24 06:08:24 +01:00
|
|
|
|
2017-01-23 11:09:02 +01:00
|
|
|
shared_libs: [
|
2017-03-24 06:08:24 +01:00
|
|
|
"android.hardware.configstore@1.0",
|
2017-04-28 11:29:40 +02:00
|
|
|
"android.hardware.configstore@1.1",
|
2017-03-24 06:08:24 +01:00
|
|
|
"libbase",
|
2017-02-27 05:43:11 +01:00
|
|
|
"libhidlbase"
|
2017-01-23 11:09:02 +01:00
|
|
|
],
|
|
|
|
export_shared_lib_headers: [
|
2017-03-24 06:08:24 +01:00
|
|
|
"android.hardware.configstore@1.0",
|
2017-04-28 11:29:40 +02:00
|
|
|
"android.hardware.configstore@1.1",
|
2017-03-24 06:08:24 +01:00
|
|
|
"libbase",
|
2017-02-27 05:43:11 +01:00
|
|
|
"libhidlbase"
|
2017-01-23 11:09:02 +01:00
|
|
|
],
|
|
|
|
}
|