Tao Bao | afb9fc2 | 2018-04-19 14:49:32 -0700 | [diff] [blame] | 1 | // Copyright (C) 2018 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 | |
Bob Badour | 29be3f6 | 2021-02-12 18:00:57 -0800 | [diff] [blame] | 15 | package { |
| 16 | // See: http://go/android-license-faq |
| 17 | // A large-scale-change added 'default_applicable_licenses' to import |
| 18 | // all of the 'license_kinds' from "bootable_recovery_license" |
| 19 | // to get the below license kinds: |
| 20 | // SPDX-license-identifier-Apache-2.0 |
| 21 | default_applicable_licenses: ["bootable_recovery_license"], |
| 22 | } |
| 23 | |
Tao Bao | afb9fc2 | 2018-04-19 14:49:32 -0700 | [diff] [blame] | 24 | cc_defaults { |
| 25 | name: "update_verifier_defaults", |
| 26 | |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 27 | defaults: [ |
| 28 | "recovery_defaults", |
Tao Bao | afb9fc2 | 2018-04-19 14:49:32 -0700 | [diff] [blame] | 29 | ], |
| 30 | |
| 31 | local_include_dirs: [ |
| 32 | "include", |
| 33 | ], |
| 34 | } |
| 35 | |
Kelvin Zhang | b4b619c | 2021-06-03 09:33:55 -0400 | [diff] [blame] | 36 | python_library_host { |
| 37 | name: "care_map_proto_py", |
| 38 | srcs: [ |
| 39 | "care_map.proto", |
| 40 | ], |
| 41 | proto: {type: "lite", canonical_path_from_root: false}, |
| 42 | version: { |
| 43 | py2: { |
| 44 | enabled: true, |
| 45 | }, |
| 46 | py3: { |
| 47 | enabled: true, |
| 48 | }, |
| 49 | }, |
| 50 | visibility: [ |
| 51 | "//build/make/tools/releasetools:__subpackages__", |
| 52 | ], |
| 53 | } |
| 54 | |
Tao Bao | afb9fc2 | 2018-04-19 14:49:32 -0700 | [diff] [blame] | 55 | cc_library_static { |
| 56 | name: "libupdate_verifier", |
| 57 | |
| 58 | defaults: [ |
| 59 | "update_verifier_defaults", |
| 60 | ], |
| 61 | |
| 62 | srcs: [ |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 63 | "care_map.proto", |
Tao Bao | afb9fc2 | 2018-04-19 14:49:32 -0700 | [diff] [blame] | 64 | "update_verifier.cpp", |
| 65 | ], |
| 66 | |
| 67 | export_include_dirs: [ |
| 68 | "include", |
| 69 | ], |
| 70 | |
| 71 | static_libs: [ |
| 72 | "libotautil", |
Daniel Rosenberg | 15f22bd | 2019-01-22 19:57:28 -0800 | [diff] [blame] | 73 | "libvold_binder", |
Tao Bao | afb9fc2 | 2018-04-19 14:49:32 -0700 | [diff] [blame] | 74 | ], |
| 75 | |
| 76 | shared_libs: [ |
| 77 | "android.hardware.boot@1.0", |
| 78 | "libbase", |
| 79 | "libcutils", |
Daniel Rosenberg | 15f22bd | 2019-01-22 19:57:28 -0800 | [diff] [blame] | 80 | "libbinder", |
| 81 | "libutils", |
Tao Bao | afb9fc2 | 2018-04-19 14:49:32 -0700 | [diff] [blame] | 82 | ], |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 83 | |
| 84 | proto: { |
| 85 | type: "lite", |
| 86 | export_proto_headers: true, |
Tianjie Xu | 7e520d2 | 2018-08-13 16:41:30 -0700 | [diff] [blame] | 87 | }, |
Tao Bao | afb9fc2 | 2018-04-19 14:49:32 -0700 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | cc_binary { |
| 91 | name: "update_verifier", |
| 92 | |
| 93 | defaults: [ |
| 94 | "update_verifier_defaults", |
| 95 | ], |
| 96 | |
| 97 | srcs: [ |
| 98 | "update_verifier_main.cpp", |
| 99 | ], |
| 100 | |
| 101 | static_libs: [ |
| 102 | "libupdate_verifier", |
| 103 | "libotautil", |
Daniel Rosenberg | 15f22bd | 2019-01-22 19:57:28 -0800 | [diff] [blame] | 104 | "libvold_binder", |
Tao Bao | afb9fc2 | 2018-04-19 14:49:32 -0700 | [diff] [blame] | 105 | ], |
| 106 | |
| 107 | shared_libs: [ |
| 108 | "android.hardware.boot@1.0", |
| 109 | "libbase", |
| 110 | "libcutils", |
| 111 | "libhardware", |
| 112 | "libhidlbase", |
| 113 | "liblog", |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 114 | "libprotobuf-cpp-lite", |
Daniel Rosenberg | 15f22bd | 2019-01-22 19:57:28 -0800 | [diff] [blame] | 115 | "libbinder", |
Tao Bao | afb9fc2 | 2018-04-19 14:49:32 -0700 | [diff] [blame] | 116 | "libutils", |
| 117 | ], |
| 118 | |
| 119 | init_rc: [ |
| 120 | "update_verifier.rc", |
| 121 | ], |
| 122 | } |
Tianjie Xu | 7e520d2 | 2018-08-13 16:41:30 -0700 | [diff] [blame] | 123 | |
| 124 | python_binary_host { |
| 125 | name: "care_map_generator", |
| 126 | |
| 127 | srcs: [ |
| 128 | "care_map_generator.py", |
| 129 | "care_map.proto", |
| 130 | ], |
| 131 | libs: [ |
| 132 | "python-symbol", |
| 133 | // Soong won't add "libprotobuf-python" to the dependencies if |
| 134 | // filegroup contains .proto files. So add it here explicitly. |
| 135 | "libprotobuf-python", |
| 136 | ], |
| 137 | proto: { |
| 138 | canonical_path_from_root: false, |
| 139 | }, |
| 140 | |
| 141 | version: { |
| 142 | py2: { |
Tianjie Xu | 7e520d2 | 2018-08-13 16:41:30 -0700 | [diff] [blame] | 143 | enabled: false, |
| 144 | embedded_launcher: false, |
| 145 | }, |
Krzysztof KosiĆski | 9c857f8 | 2021-02-24 16:02:25 -0800 | [diff] [blame] | 146 | py3: { |
| 147 | enabled: true, |
| 148 | embedded_launcher: true, |
| 149 | }, |
Tianjie Xu | 7e520d2 | 2018-08-13 16:41:30 -0700 | [diff] [blame] | 150 | }, |
| 151 | } |