Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 1 | // Copyright (C) 2021 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 | // This file contains module definitions for compatibility files. |
| 16 | |
Bob Badour | 048e48c | 2022-01-05 11:14:44 -0800 | [diff] [blame] | 17 | package { |
| 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 "system_sepolicy_license" |
| 21 | // to get the below license kinds: |
| 22 | // SPDX-license-identifier-Apache-2.0 |
| 23 | default_applicable_licenses: ["system_sepolicy_license"], |
| 24 | } |
| 25 | |
Inseob Kim | 79fdbeb | 2022-08-12 22:27:35 +0900 | [diff] [blame] | 26 | se_build_files { |
Inseob Kim | 79fdbeb | 2022-08-12 22:27:35 +0900 | [diff] [blame] | 27 | name: "29.0.board.compat.map", |
| 28 | srcs: [ |
| 29 | "compat/29.0/29.0.cil", |
| 30 | ], |
| 31 | } |
| 32 | |
| 33 | se_build_files { |
| 34 | name: "30.0.board.compat.map", |
| 35 | srcs: [ |
| 36 | "compat/30.0/30.0.cil", |
| 37 | ], |
| 38 | } |
| 39 | |
| 40 | se_build_files { |
| 41 | name: "31.0.board.compat.map", |
| 42 | srcs: [ |
| 43 | "compat/31.0/31.0.cil", |
| 44 | ], |
| 45 | } |
| 46 | |
| 47 | se_build_files { |
| 48 | name: "32.0.board.compat.map", |
| 49 | srcs: [ |
| 50 | "compat/32.0/32.0.cil", |
| 51 | ], |
| 52 | } |
| 53 | |
| 54 | se_build_files { |
| 55 | name: "33.0.board.compat.map", |
| 56 | srcs: [ |
| 57 | "compat/33.0/33.0.cil", |
| 58 | ], |
| 59 | } |
| 60 | |
| 61 | se_build_files { |
Inseob Kim | 79fdbeb | 2022-08-12 22:27:35 +0900 | [diff] [blame] | 62 | name: "29.0.board.compat.cil", |
| 63 | srcs: [ |
| 64 | "compat/29.0/29.0.compat.cil", |
| 65 | ], |
| 66 | } |
| 67 | |
| 68 | se_build_files { |
| 69 | name: "30.0.board.compat.cil", |
| 70 | srcs: [ |
| 71 | "compat/30.0/30.0.compat.cil", |
| 72 | ], |
| 73 | } |
| 74 | |
| 75 | se_build_files { |
| 76 | name: "31.0.board.compat.cil", |
| 77 | srcs: [ |
| 78 | "compat/31.0/31.0.compat.cil", |
| 79 | ], |
| 80 | } |
| 81 | |
| 82 | se_build_files { |
| 83 | name: "32.0.board.compat.cil", |
| 84 | srcs: [ |
| 85 | "compat/32.0/32.0.compat.cil", |
| 86 | ], |
| 87 | } |
| 88 | |
| 89 | se_build_files { |
| 90 | name: "33.0.board.compat.cil", |
| 91 | srcs: [ |
| 92 | "compat/33.0/33.0.compat.cil", |
| 93 | ], |
| 94 | } |
| 95 | |
| 96 | se_build_files { |
Inseob Kim | 79fdbeb | 2022-08-12 22:27:35 +0900 | [diff] [blame] | 97 | name: "29.0.board.ignore.map", |
| 98 | srcs: [ |
| 99 | "compat/29.0/29.0.ignore.cil", |
| 100 | ], |
| 101 | } |
| 102 | |
| 103 | se_build_files { |
| 104 | name: "30.0.board.ignore.map", |
| 105 | srcs: [ |
| 106 | "compat/30.0/30.0.ignore.cil", |
| 107 | ], |
| 108 | } |
| 109 | |
| 110 | se_build_files { |
| 111 | name: "31.0.board.ignore.map", |
| 112 | srcs: [ |
| 113 | "compat/31.0/31.0.ignore.cil", |
| 114 | ], |
| 115 | } |
| 116 | |
| 117 | se_build_files { |
| 118 | name: "32.0.board.ignore.map", |
| 119 | srcs: [ |
| 120 | "compat/32.0/32.0.ignore.cil", |
| 121 | ], |
| 122 | } |
| 123 | |
| 124 | se_build_files { |
| 125 | name: "33.0.board.ignore.map", |
| 126 | srcs: [ |
| 127 | "compat/33.0/33.0.ignore.cil", |
| 128 | ], |
| 129 | } |
| 130 | |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 131 | se_cil_compat_map { |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 132 | name: "plat_29.0.cil", |
| 133 | stem: "29.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 134 | bottom_half: [":29.0.board.compat.map{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 135 | top_half: "plat_30.0.cil", |
| 136 | } |
| 137 | |
| 138 | se_cil_compat_map { |
| 139 | name: "plat_30.0.cil", |
| 140 | stem: "30.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 141 | bottom_half: [":30.0.board.compat.map{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 142 | top_half: "plat_31.0.cil", |
| 143 | } |
| 144 | |
| 145 | se_cil_compat_map { |
| 146 | name: "plat_31.0.cil", |
| 147 | stem: "31.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 148 | bottom_half: [":31.0.board.compat.map{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 149 | top_half: "plat_32.0.cil", |
| 150 | } |
| 151 | |
| 152 | se_cil_compat_map { |
| 153 | name: "plat_32.0.cil", |
| 154 | stem: "32.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 155 | bottom_half: [":32.0.board.compat.map{.plat_private}"], |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 156 | top_half: "plat_33.0.cil", |
| 157 | } |
| 158 | |
| 159 | se_cil_compat_map { |
| 160 | name: "plat_33.0.cil", |
| 161 | stem: "33.0.cil", |
| 162 | bottom_half: [":33.0.board.compat.map{.plat_private}"], |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame^] | 163 | top_half: "plat_34.0.cil", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | se_cil_compat_map { |
| 167 | name: "system_ext_29.0.cil", |
| 168 | stem: "29.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 169 | bottom_half: [":29.0.board.compat.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 170 | top_half: "system_ext_30.0.cil", |
| 171 | system_ext_specific: true, |
| 172 | } |
| 173 | |
| 174 | se_cil_compat_map { |
| 175 | name: "system_ext_30.0.cil", |
| 176 | stem: "30.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 177 | bottom_half: [":30.0.board.compat.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 178 | top_half: "system_ext_31.0.cil", |
| 179 | system_ext_specific: true, |
| 180 | } |
| 181 | |
| 182 | se_cil_compat_map { |
| 183 | name: "system_ext_31.0.cil", |
| 184 | stem: "31.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 185 | bottom_half: [":31.0.board.compat.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 186 | top_half: "system_ext_32.0.cil", |
| 187 | system_ext_specific: true, |
| 188 | } |
| 189 | |
| 190 | se_cil_compat_map { |
| 191 | name: "system_ext_32.0.cil", |
| 192 | stem: "32.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 193 | bottom_half: [":32.0.board.compat.map{.system_ext_private}"], |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 194 | top_half: "system_ext_33.0.cil", |
| 195 | system_ext_specific: true, |
| 196 | } |
| 197 | |
| 198 | se_cil_compat_map { |
| 199 | name: "system_ext_33.0.cil", |
| 200 | stem: "33.0.cil", |
| 201 | bottom_half: [":33.0.board.compat.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 202 | system_ext_specific: true, |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame^] | 203 | top_half: "system_ext_34.0.cil", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | se_cil_compat_map { |
| 207 | name: "product_29.0.cil", |
| 208 | stem: "29.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 209 | bottom_half: [":29.0.board.compat.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 210 | top_half: "product_30.0.cil", |
| 211 | product_specific: true, |
| 212 | } |
| 213 | |
| 214 | se_cil_compat_map { |
| 215 | name: "product_30.0.cil", |
| 216 | stem: "30.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 217 | bottom_half: [":30.0.board.compat.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 218 | top_half: "product_31.0.cil", |
| 219 | product_specific: true, |
| 220 | } |
| 221 | |
| 222 | se_cil_compat_map { |
| 223 | name: "product_31.0.cil", |
| 224 | stem: "31.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 225 | bottom_half: [":31.0.board.compat.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 226 | top_half: "product_32.0.cil", |
| 227 | product_specific: true, |
| 228 | } |
| 229 | |
| 230 | se_cil_compat_map { |
| 231 | name: "product_32.0.cil", |
| 232 | stem: "32.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 233 | bottom_half: [":32.0.board.compat.map{.product_private}"], |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 234 | top_half: "product_33.0.cil", |
| 235 | product_specific: true, |
| 236 | } |
| 237 | |
| 238 | se_cil_compat_map { |
| 239 | name: "product_33.0.cil", |
| 240 | stem: "33.0.cil", |
| 241 | bottom_half: [":33.0.board.compat.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 242 | product_specific: true, |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame^] | 243 | top_half: "product_34.0.cil", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | se_cil_compat_map { |
| 247 | name: "29.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 248 | bottom_half: [":29.0.board.ignore.map{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 249 | top_half: "30.0.ignore.cil", |
| 250 | } |
| 251 | |
| 252 | se_cil_compat_map { |
| 253 | name: "30.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 254 | bottom_half: [":30.0.board.ignore.map{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 255 | top_half: "31.0.ignore.cil", |
| 256 | } |
| 257 | |
| 258 | se_cil_compat_map { |
| 259 | name: "31.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 260 | bottom_half: [":31.0.board.ignore.map{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 261 | top_half: "32.0.ignore.cil", |
| 262 | } |
| 263 | |
| 264 | se_cil_compat_map { |
| 265 | name: "32.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 266 | bottom_half: [":32.0.board.ignore.map{.plat_private}"], |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 267 | top_half: "33.0.ignore.cil", |
| 268 | } |
| 269 | |
| 270 | se_cil_compat_map { |
| 271 | name: "33.0.ignore.cil", |
| 272 | bottom_half: [":33.0.board.ignore.map{.plat_private}"], |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame^] | 273 | top_half: "34.0.ignore.cil", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | se_cil_compat_map { |
| 277 | name: "system_ext_30.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 278 | bottom_half: [":30.0.board.ignore.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 279 | top_half: "system_ext_31.0.ignore.cil", |
| 280 | system_ext_specific: true, |
| 281 | } |
| 282 | |
| 283 | se_cil_compat_map { |
| 284 | name: "system_ext_31.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 285 | bottom_half: [":31.0.board.ignore.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 286 | top_half: "system_ext_32.0.ignore.cil", |
| 287 | system_ext_specific: true, |
| 288 | } |
| 289 | |
| 290 | se_cil_compat_map { |
| 291 | name: "system_ext_32.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 292 | bottom_half: [":32.0.board.ignore.map{.system_ext_private}"], |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 293 | top_half: "system_ext_33.0.ignore.cil", |
| 294 | system_ext_specific: true, |
| 295 | } |
| 296 | |
| 297 | se_cil_compat_map { |
| 298 | name: "system_ext_33.0.ignore.cil", |
| 299 | bottom_half: [":33.0.board.ignore.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 300 | system_ext_specific: true, |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame^] | 301 | top_half: "system_ext_34.0.ignore.cil", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | se_cil_compat_map { |
| 305 | name: "product_30.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 306 | bottom_half: [":30.0.board.ignore.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 307 | top_half: "product_31.0.ignore.cil", |
| 308 | product_specific: true, |
| 309 | } |
| 310 | |
| 311 | se_cil_compat_map { |
| 312 | name: "product_31.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 313 | bottom_half: [":31.0.board.ignore.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 314 | top_half: "product_32.0.ignore.cil", |
| 315 | product_specific: true, |
| 316 | } |
| 317 | |
| 318 | se_cil_compat_map { |
| 319 | name: "product_32.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 320 | bottom_half: [":32.0.board.ignore.map{.product_private}"], |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 321 | top_half: "product_33.0.ignore.cil", |
| 322 | product_specific: true, |
| 323 | } |
| 324 | |
| 325 | se_cil_compat_map { |
| 326 | name: "product_33.0.ignore.cil", |
| 327 | bottom_half: [":33.0.board.ignore.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 328 | product_specific: true, |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame^] | 329 | top_half: "product_34.0.ignore.cil", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | se_compat_cil { |
| 333 | name: "29.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 334 | srcs: [":29.0.board.compat.cil{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | se_compat_cil { |
| 338 | name: "30.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 339 | srcs: [":30.0.board.compat.cil{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | se_compat_cil { |
| 343 | name: "31.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 344 | srcs: [":31.0.board.compat.cil{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | se_compat_cil { |
| 348 | name: "32.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 349 | srcs: [":32.0.board.compat.cil{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | se_compat_cil { |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 353 | name: "33.0.compat.cil", |
| 354 | srcs: [":33.0.board.compat.cil{.plat_private}"], |
| 355 | } |
| 356 | |
| 357 | se_compat_cil { |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 358 | name: "system_ext_29.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 359 | srcs: [":29.0.board.compat.cil{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 360 | stem: "29.0.compat.cil", |
| 361 | system_ext_specific: true, |
| 362 | } |
| 363 | |
| 364 | se_compat_cil { |
| 365 | name: "system_ext_30.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 366 | srcs: [":30.0.board.compat.cil{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 367 | stem: "30.0.compat.cil", |
| 368 | system_ext_specific: true, |
| 369 | } |
| 370 | |
| 371 | se_compat_cil { |
| 372 | name: "system_ext_31.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 373 | srcs: [":31.0.board.compat.cil{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 374 | stem: "31.0.compat.cil", |
| 375 | system_ext_specific: true, |
| 376 | } |
| 377 | |
| 378 | se_compat_cil { |
| 379 | name: "system_ext_32.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 380 | srcs: [":32.0.board.compat.cil{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 381 | stem: "32.0.compat.cil", |
| 382 | system_ext_specific: true, |
| 383 | } |
Inseob Kim | 16d3be3 | 2022-01-07 09:15:27 +0900 | [diff] [blame] | 384 | |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 385 | se_compat_cil { |
| 386 | name: "system_ext_33.0.compat.cil", |
| 387 | srcs: [":33.0.board.compat.cil{.system_ext_private}"], |
| 388 | stem: "33.0.compat.cil", |
| 389 | system_ext_specific: true, |
| 390 | } |
| 391 | |
Inseob Kim | 16d3be3 | 2022-01-07 09:15:27 +0900 | [diff] [blame] | 392 | se_compat_test { |
| 393 | name: "sepolicy_compat_test", |
| 394 | } |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame^] | 395 | |
| 396 | se_build_files { |
| 397 | name: "34.0.board.compat.map", |
| 398 | srcs: ["compat/34.0/34.0.cil"], |
| 399 | } |
| 400 | |
| 401 | se_build_files { |
| 402 | name: "34.0.board.compat.cil", |
| 403 | srcs: ["compat/34.0/34.0.compat.cil"], |
| 404 | } |
| 405 | |
| 406 | se_build_files { |
| 407 | name: "34.0.board.ignore.map", |
| 408 | srcs: ["compat/34.0/34.0.ignore.cil"], |
| 409 | } |
| 410 | |
| 411 | se_cil_compat_map { |
| 412 | name: "plat_34.0.cil", |
| 413 | stem: "34.0.cil", |
| 414 | bottom_half: [":34.0.board.compat.map{.plat_private}"], |
| 415 | } |
| 416 | |
| 417 | se_cil_compat_map { |
| 418 | name: "system_ext_34.0.cil", |
| 419 | stem: "34.0.cil", |
| 420 | bottom_half: [":34.0.board.compat.map{.system_ext_private}"], |
| 421 | system_ext_specific: true, |
| 422 | } |
| 423 | |
| 424 | se_cil_compat_map { |
| 425 | name: "product_34.0.cil", |
| 426 | stem: "34.0.cil", |
| 427 | bottom_half: [":34.0.board.compat.map{.product_private}"], |
| 428 | product_specific: true, |
| 429 | } |
| 430 | |
| 431 | se_cil_compat_map { |
| 432 | name: "34.0.ignore.cil", |
| 433 | bottom_half: [":34.0.board.ignore.map{.plat_private}"], |
| 434 | } |
| 435 | |
| 436 | se_cil_compat_map { |
| 437 | name: "system_ext_34.0.ignore.cil", |
| 438 | stem: "34.0.ignore.cil", |
| 439 | bottom_half: [":34.0.board.ignore.map{.system_ext_private}"], |
| 440 | system_ext_specific: true, |
| 441 | } |
| 442 | |
| 443 | se_cil_compat_map { |
| 444 | name: "product_34.0.ignore.cil", |
| 445 | stem: "34.0.ignore.cil", |
| 446 | bottom_half: [":34.0.board.ignore.map{.product_private}"], |
| 447 | product_specific: true, |
| 448 | } |
| 449 | |
| 450 | se_compat_cil { |
| 451 | name: "34.0.compat.cil", |
| 452 | srcs: [":34.0.board.compat.cil{.plat_private}"], |
| 453 | } |
| 454 | |
| 455 | se_compat_cil { |
| 456 | name: "system_ext_34.0.compat.cil", |
| 457 | stem: "34.0.compat.cil", |
| 458 | srcs: [":34.0.board.compat.cil{.system_ext_private}"], |
| 459 | system_ext_specific: true, |
| 460 | } |