blob: ac6931f3e1c7f31c3d40e97536a288f58122278e [file] [log] [blame]
//
// Copyright (C) 2020 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 {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "external_minigbm_license"
// to get the below license kinds:
// SPDX-license-identifier-BSD
default_applicable_licenses: ["external_minigbm_license"],
}
filegroup {
name: "minigbm_gralloc3_allocator_files",
srcs: [
"CrosGralloc3Allocator.cc",
"CrosGralloc3AllocatorService.cc",
"CrosGralloc3Utils.cc",
],
}
filegroup {
name: "minigbm_gralloc3_mapper_files",
srcs: [
"CrosGralloc3Mapper.cc",
"CrosGralloc3Utils.cc",
],
}
cc_defaults {
name: "minigbm_gralloc3_common_defaults",
defaults: ["minigbm_cros_gralloc_defaults"],
shared_libs: [
"android.hardware.graphics.mapper@3.0",
"libgralloctypes",
"libhidlbase",
"libbase",
"libutils",
],
cflags: ["-Wno-sign-compare"],
relative_install_path: "hw",
}
cc_defaults {
name: "minigbm_gralloc3_allocator_defaults",
defaults: ["minigbm_gralloc3_common_defaults"],
shared_libs: ["android.hardware.graphics.allocator@3.0"],
srcs: [":minigbm_gralloc3_allocator_files"],
}
cc_binary {
name: "android.hardware.graphics.allocator@3.0-service.minigbm",
defaults: ["minigbm_gralloc3_allocator_defaults"],
shared_libs: ["libminigbm_gralloc"],
init_rc: ["android.hardware.graphics.allocator@3.0-service.minigbm.rc"],
}
cc_library_shared {
name: "android.hardware.graphics.mapper@3.0-impl.minigbm",
defaults: ["minigbm_gralloc3_common_defaults"],
shared_libs: ["libminigbm_gralloc"],
srcs: [":minigbm_gralloc3_mapper_files"],
}