David Anderson | ee84d74 | 2019-01-07 18:10:29 -0800 | [diff] [blame] | 1 | // |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 2 | // Copyright (C) 2019 The Android Open Source Project |
David Anderson | ee84d74 | 2019-01-07 18:10:29 -0800 | [diff] [blame] | 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 | |
| 17 | cc_binary { |
| 18 | name: "gsi_tool", |
| 19 | shared_libs: [ |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 20 | "gsi_aidl_interface-cpp", |
David Anderson | ee84d74 | 2019-01-07 18:10:29 -0800 | [diff] [blame] | 21 | "libbase", |
David Anderson | 83fdeca | 2019-09-09 17:56:22 -0700 | [diff] [blame] | 22 | "libbinder", |
David Anderson | b33f2b1 | 2019-01-22 14:14:10 -0800 | [diff] [blame] | 23 | "libcutils", |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 24 | "libgsi", |
David Anderson | ee84d74 | 2019-01-07 18:10:29 -0800 | [diff] [blame] | 25 | "liblog", |
David Anderson | ee84d74 | 2019-01-07 18:10:29 -0800 | [diff] [blame] | 26 | "libutils", |
| 27 | ], |
David Anderson | 83fdeca | 2019-09-09 17:56:22 -0700 | [diff] [blame] | 28 | static_libs: [ |
| 29 | "libgsid", |
| 30 | ], |
David Anderson | ee84d74 | 2019-01-07 18:10:29 -0800 | [diff] [blame] | 31 | srcs: [ |
| 32 | "gsi_tool.cpp", |
| 33 | ], |
| 34 | } |
| 35 | |
| 36 | cc_library { |
| 37 | name: "libgsi", |
| 38 | recovery_available: true, |
Howard Chen | 9e20bdf | 2019-01-09 17:54:26 +0800 | [diff] [blame] | 39 | host_supported: true, |
David Anderson | ee84d74 | 2019-01-07 18:10:29 -0800 | [diff] [blame] | 40 | srcs: [ |
| 41 | "libgsi.cpp", |
| 42 | ], |
| 43 | shared_libs: [ |
| 44 | "libbase", |
| 45 | ], |
| 46 | export_include_dirs: ["include"], |
| 47 | } |
| 48 | |
David Anderson | 83fdeca | 2019-09-09 17:56:22 -0700 | [diff] [blame] | 49 | cc_library_static { |
| 50 | name: "libgsid", |
| 51 | srcs: [ |
| 52 | "libgsid.cpp", |
| 53 | ], |
| 54 | shared_libs: [ |
| 55 | "gsi_aidl_interface-cpp", |
| 56 | "libbase", |
| 57 | "libbinder", |
David Anderson | 83fdeca | 2019-09-09 17:56:22 -0700 | [diff] [blame] | 58 | "libutils", |
| 59 | ], |
David Anderson | 83fdeca | 2019-09-09 17:56:22 -0700 | [diff] [blame] | 60 | export_include_dirs: ["include"], |
| 61 | } |
| 62 | |
David Anderson | ee84d74 | 2019-01-07 18:10:29 -0800 | [diff] [blame] | 63 | cc_library_headers { |
| 64 | name: "libgsi_headers", |
Howard Chen | 9e20bdf | 2019-01-09 17:54:26 +0800 | [diff] [blame] | 65 | host_supported: true, |
David Anderson | ee84d74 | 2019-01-07 18:10:29 -0800 | [diff] [blame] | 66 | recovery_available: true, |
| 67 | vendor_available: true, |
| 68 | export_include_dirs: ["include"], |
| 69 | } |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 70 | |
| 71 | cc_binary { |
| 72 | name: "gsid", |
| 73 | srcs: [ |
| 74 | "daemon.cpp", |
| 75 | "gsi_service.cpp", |
Howard Chen | 4663de6 | 2019-11-05 20:46:20 +0800 | [diff] [blame] | 76 | "partition_installer.cpp", |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 77 | ], |
| 78 | required: [ |
| 79 | "mke2fs", |
| 80 | ], |
| 81 | init_rc: [ |
| 82 | "gsid.rc", |
| 83 | ], |
| 84 | shared_libs: [ |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 85 | "libbase", |
| 86 | "libbinder", |
David Anderson | d614eca | 2019-09-09 17:57:06 -0700 | [diff] [blame] | 87 | "libcrypto", |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 88 | "liblog", |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 89 | ], |
| 90 | static_libs: [ |
David Anderson | d614eca | 2019-09-09 17:57:06 -0700 | [diff] [blame] | 91 | "gsi_aidl_interface-cpp", |
Yo Chiang | 53bed1c | 2020-01-01 16:25:19 +0800 | [diff] [blame] | 92 | "libavb", |
David Anderson | d614eca | 2019-09-09 17:57:06 -0700 | [diff] [blame] | 93 | "libcutils", |
David Anderson | 963d7cc | 2019-01-17 13:34:57 -0800 | [diff] [blame] | 94 | "libdm", |
David Anderson | d614eca | 2019-09-09 17:57:06 -0700 | [diff] [blame] | 95 | "libext4_utils", |
David Anderson | d614eca | 2019-09-09 17:57:06 -0700 | [diff] [blame] | 96 | "libfs_mgr", |
| 97 | "libgsi", |
| 98 | "libgsid", |
| 99 | "liblp", |
| 100 | "libutils", |
Howard Chen | ee5c2b1 | 2019-11-08 11:57:47 +0800 | [diff] [blame] | 101 | "libc++fs", |
Yo Chiang | 1f08091 | 2020-10-07 17:29:57 +0800 | [diff] [blame] | 102 | "libvold_binder", |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 103 | ], |
Yo Chiang | 721a0e4 | 2020-12-28 19:29:47 +0800 | [diff] [blame] | 104 | header_libs: [ |
| 105 | "libstorage_literals_headers", |
| 106 | ], |
Stephen Hines | 60bbc03 | 2020-07-14 18:02:03 -0700 | [diff] [blame] | 107 | target: { |
| 108 | android: { |
| 109 | shared_libs: [ |
| 110 | "libprocessgroup", |
| 111 | "libvndksupport", |
| 112 | ], |
| 113 | }, |
| 114 | }, |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 115 | local_include_dirs: ["include"], |
| 116 | } |
| 117 | |
| 118 | aidl_interface { |
| 119 | name: "gsi_aidl_interface", |
Jiyong Park | 4801a3f | 2020-04-13 12:56:16 +0900 | [diff] [blame] | 120 | unstable: true, |
David Anderson | 6f373b7 | 2019-06-05 15:04:00 -0700 | [diff] [blame] | 121 | srcs: [":gsiservice_aidl"], |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 122 | local_include_dir: "aidl", |
| 123 | backend: { |
| 124 | ndk: { |
| 125 | enabled: false, |
| 126 | }, |
| 127 | }, |
| 128 | } |
| 129 | |
| 130 | filegroup { |
| 131 | name: "gsiservice_aidl", |
| 132 | srcs: [ |
Yo Chiang | 53bed1c | 2020-01-01 16:25:19 +0800 | [diff] [blame] | 133 | "aidl/android/gsi/AvbPublicKey.aidl", |
David Anderson | 6a5b8a7 | 2019-01-16 16:24:48 -0800 | [diff] [blame] | 134 | "aidl/android/gsi/GsiProgress.aidl", |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 135 | "aidl/android/gsi/IGsiService.aidl", |
Howard Chen | 7885d3c | 2020-02-26 12:48:41 +0800 | [diff] [blame] | 136 | "aidl/android/gsi/IGsiServiceCallback.aidl", |
Yo Chiang | 53bed1c | 2020-01-01 16:25:19 +0800 | [diff] [blame] | 137 | "aidl/android/gsi/IImageService.aidl", |
Yifan Hong | d66695b | 2019-12-23 16:07:45 -0800 | [diff] [blame] | 138 | "aidl/android/gsi/IProgressCallback.aidl", |
David Anderson | 6f373b7 | 2019-06-05 15:04:00 -0700 | [diff] [blame] | 139 | "aidl/android/gsi/MappedImage.aidl", |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 140 | ], |
Jiyong Park | eaabad0 | 2019-08-16 21:10:23 +0900 | [diff] [blame] | 141 | path: "aidl", |
David Anderson | c053b3b | 2019-01-08 18:22:07 -0800 | [diff] [blame] | 142 | } |