blob: dcb6c3c2cf27eb3b6841bcb45acfd04f83985556 [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
Steven Moreland1dba6a82024-02-16 22:32:43 +000042cc_binary {
43 name: "misctrl",
44 shared_libs: [
45 "libbase",
46 "libbootloader_message",
47 "liblog",
48 ],
49 init_rc: ["misctrl.rc"],
50 srcs: ["misctrl_main.cpp"],
51}
52
Tao Bao7ae01692019-05-16 14:42:42 -070053cc_library {
54 name: "libbootloader_message",
55 defaults: [
56 "libbootloader_message_defaults",
57 ],
58 recovery_available: true,
Kelvin Zhang6f689642022-08-30 00:24:40 +000059 vendor_available: true,
Tao Bao7ae01692019-05-16 14:42:42 -070060 host_supported: true,
Yifan Hongd83070d2019-05-01 13:12:57 -070061
62 target: {
Yifan Hongd83070d2019-05-01 13:12:57 -070063 host: {
64 shared_libs: [
65 "libcutils", // for strlcpy
66 ],
Colin Crossfb68d382019-05-06 09:48:15 -070067 },
68 darwin: {
69 enabled: false,
70 },
Yifan Hongd83070d2019-05-01 13:12:57 -070071 }
Tom Cherry600e8062017-05-12 17:08:20 -070072}
Tao Bao7ae01692019-05-16 14:42:42 -070073
74cc_library_static {
75 name: "libbootloader_message_vendor",
76 defaults: [
77 "libbootloader_message_defaults",
78 ],
79 vendor: true,
David Andersonf7714842019-08-29 13:47:45 -070080 recovery_available: true,
Tao Bao7ae01692019-05-16 14:42:42 -070081}