c06c6873f6
This change makes android.hardware.configstore-utils library built as a header-only library instead of a static library. Design doc: go/design-confighal Bug: 35397068 Test: build, run Change-Id: I59c7c8802aeb1fb687af24cfdb2bbb38723e6221 Merged-In: Idee48816a1a271bdb9ba8cf907d98c3823925da4
27 lines
872 B
Text
27 lines
872 B
Text
//
|
|
// 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_headers {
|
|
name: "android.hardware.configstore-utils",
|
|
defaults: ["hidl_defaults"],
|
|
export_include_dirs: ["include"],
|
|
shared_libs: [
|
|
"libhidlbase"
|
|
],
|
|
export_shared_lib_headers: [
|
|
"libhidlbase"
|
|
],
|
|
}
|