blob: 778fdb93ef04195f108b67a68fd866b02efea24e [file] [log] [blame]
Tom Cherry600e8062017-05-12 17:08:20 -07001//
2// Copyright (C) 2017 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
Bob Badour29be3f62021-02-12 18:00:57 -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 "bootable_recovery_license"
21 // to get the below license kinds:
22 // SPDX-license-identifier-Apache-2.0
23 default_applicable_licenses: ["bootable_recovery_license"],
24}
25
Tao Bao7ae01692019-05-16 14:42:42 -070026cc_defaults {
27 name: "libbootloader_message_defaults",
Tom Cherry600e8062017-05-12 17:08:20 -070028 srcs: ["bootloader_message.cpp"],
Chih-Hung Hsieh5aa77ca2017-10-02 11:44:52 -070029 cflags: [
Tianjie Xuc89d1e72017-08-28 14:15:07 -070030 "-Wall",
31 "-Werror",
32 ],
Tao Bao8ca32202018-07-25 13:05:14 -070033 shared_libs: [
Tom Cherry600e8062017-05-12 17:08:20 -070034 "libbase",
Tom Cherry600e8062017-05-12 17:08:20 -070035 ],
Tao Bao7ae01692019-05-16 14:42:42 -070036 static_libs: [
37 "libfstab",
38 ],
Tom Cherry600e8062017-05-12 17:08:20 -070039 export_include_dirs: ["include"],
Tao Bao7ae01692019-05-16 14:42:42 -070040}
41
42cc_library {
43 name: "libbootloader_message",
44 defaults: [
45 "libbootloader_message_defaults",
46 ],
47 recovery_available: true,
48 host_supported: true,
Yifan Hongd83070d2019-05-01 13:12:57 -070049
50 target: {
Yifan Hongd83070d2019-05-01 13:12:57 -070051 host: {
52 shared_libs: [
53 "libcutils", // for strlcpy
54 ],
Colin Crossfb68d382019-05-06 09:48:15 -070055 },
56 darwin: {
57 enabled: false,
58 },
Yifan Hongd83070d2019-05-01 13:12:57 -070059 }
Tom Cherry600e8062017-05-12 17:08:20 -070060}
Tao Bao7ae01692019-05-16 14:42:42 -070061
62cc_library_static {
63 name: "libbootloader_message_vendor",
64 defaults: [
65 "libbootloader_message_defaults",
66 ],
67 vendor: true,
David Andersonf7714842019-08-29 13:47:45 -070068 recovery_available: true,
Tao Bao7ae01692019-05-16 14:42:42 -070069}