blob: 6a864c8fecaf597e613edc13bef2e09650ec6f39 [file] [log] [blame]
Dan Willemsen86e247a2017-12-18 21:10:37 -08001// Copyright (C) 2008 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15// HAL module implemenation stored in
16// hw/<OVERLAY_HARDWARE_MODULE_ID>.<ro.product.board>.so
Bob Badourd7984cc2021-02-12 20:51:13 -080017package {
18 // See: http://go/android-license-faq
19 // A large-scale-change added 'default_applicable_licenses' to import
20 // all of the 'license_kinds' from "hardware_libhardware_license"
21 // to get the below license kinds:
22 // SPDX-license-identifier-Apache-2.0
23 default_applicable_licenses: ["hardware_libhardware_license"],
24}
25
Dan Willemsen86e247a2017-12-18 21:10:37 -080026cc_library_shared {
27 name: "hwcomposer.default",
28 relative_install_path: "hw",
29 vendor: true,
30 shared_libs: [
31 "liblog",
32 "libEGL",
33 ],
34 srcs: ["hwcomposer.cpp"],
35 header_libs: ["libhardware_headers"],
36 cflags: [
37 "-DLOG_TAG=\"hwcomposer\"",
38 "-Wall",
39 "-Werror",
40 ],
41}