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", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 136 | version: "29.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | se_cil_compat_map { |
| 140 | name: "plat_30.0.cil", |
| 141 | stem: "30.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 142 | bottom_half: [":30.0.board.compat.map{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 143 | top_half: "plat_31.0.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 144 | version: "30.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | se_cil_compat_map { |
| 148 | name: "plat_31.0.cil", |
| 149 | stem: "31.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 150 | bottom_half: [":31.0.board.compat.map{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 151 | top_half: "plat_32.0.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 152 | version: "31.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | se_cil_compat_map { |
| 156 | name: "plat_32.0.cil", |
| 157 | stem: "32.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 158 | bottom_half: [":32.0.board.compat.map{.plat_private}"], |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 159 | top_half: "plat_33.0.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 160 | version: "32.0", |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | se_cil_compat_map { |
| 164 | name: "plat_33.0.cil", |
| 165 | stem: "33.0.cil", |
| 166 | bottom_half: [":33.0.board.compat.map{.plat_private}"], |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 167 | top_half: "plat_34.0.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 168 | version: "33.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | se_cil_compat_map { |
| 172 | name: "system_ext_29.0.cil", |
| 173 | stem: "29.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 174 | bottom_half: [":29.0.board.compat.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 175 | top_half: "system_ext_30.0.cil", |
| 176 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 177 | version: "29.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | se_cil_compat_map { |
| 181 | name: "system_ext_30.0.cil", |
| 182 | stem: "30.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 183 | bottom_half: [":30.0.board.compat.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 184 | top_half: "system_ext_31.0.cil", |
| 185 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 186 | version: "30.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | se_cil_compat_map { |
| 190 | name: "system_ext_31.0.cil", |
| 191 | stem: "31.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 192 | bottom_half: [":31.0.board.compat.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 193 | top_half: "system_ext_32.0.cil", |
| 194 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 195 | version: "31.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | se_cil_compat_map { |
| 199 | name: "system_ext_32.0.cil", |
| 200 | stem: "32.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 201 | bottom_half: [":32.0.board.compat.map{.system_ext_private}"], |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 202 | top_half: "system_ext_33.0.cil", |
| 203 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 204 | version: "32.0", |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | se_cil_compat_map { |
| 208 | name: "system_ext_33.0.cil", |
| 209 | stem: "33.0.cil", |
| 210 | bottom_half: [":33.0.board.compat.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 211 | system_ext_specific: true, |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 212 | top_half: "system_ext_34.0.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 213 | version: "33.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | se_cil_compat_map { |
| 217 | name: "product_29.0.cil", |
| 218 | stem: "29.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 219 | bottom_half: [":29.0.board.compat.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 220 | top_half: "product_30.0.cil", |
| 221 | product_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 222 | version: "29.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | se_cil_compat_map { |
| 226 | name: "product_30.0.cil", |
| 227 | stem: "30.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 228 | bottom_half: [":30.0.board.compat.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 229 | top_half: "product_31.0.cil", |
| 230 | product_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 231 | version: "30.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | se_cil_compat_map { |
| 235 | name: "product_31.0.cil", |
| 236 | stem: "31.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 237 | bottom_half: [":31.0.board.compat.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 238 | top_half: "product_32.0.cil", |
| 239 | product_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 240 | version: "31.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | se_cil_compat_map { |
| 244 | name: "product_32.0.cil", |
| 245 | stem: "32.0.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 246 | bottom_half: [":32.0.board.compat.map{.product_private}"], |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 247 | top_half: "product_33.0.cil", |
| 248 | product_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 249 | version: "32.0", |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | se_cil_compat_map { |
| 253 | name: "product_33.0.cil", |
| 254 | stem: "33.0.cil", |
| 255 | bottom_half: [":33.0.board.compat.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 256 | product_specific: true, |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 257 | top_half: "product_34.0.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 258 | version: "33.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | se_cil_compat_map { |
| 262 | name: "29.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 263 | bottom_half: [":29.0.board.ignore.map{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 264 | top_half: "30.0.ignore.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 265 | version: "29.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | se_cil_compat_map { |
| 269 | name: "30.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 270 | bottom_half: [":30.0.board.ignore.map{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 271 | top_half: "31.0.ignore.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 272 | version: "30.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | se_cil_compat_map { |
| 276 | name: "31.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 277 | bottom_half: [":31.0.board.ignore.map{.plat_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 278 | top_half: "32.0.ignore.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 279 | version: "31.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | se_cil_compat_map { |
| 283 | name: "32.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 284 | bottom_half: [":32.0.board.ignore.map{.plat_private}"], |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 285 | top_half: "33.0.ignore.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 286 | version: "32.0", |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | se_cil_compat_map { |
| 290 | name: "33.0.ignore.cil", |
| 291 | bottom_half: [":33.0.board.ignore.map{.plat_private}"], |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 292 | top_half: "34.0.ignore.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 293 | version: "33.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | se_cil_compat_map { |
| 297 | name: "system_ext_30.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 298 | bottom_half: [":30.0.board.ignore.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 299 | top_half: "system_ext_31.0.ignore.cil", |
| 300 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 301 | version: "30.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | se_cil_compat_map { |
| 305 | name: "system_ext_31.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 306 | bottom_half: [":31.0.board.ignore.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 307 | top_half: "system_ext_32.0.ignore.cil", |
| 308 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 309 | version: "31.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | se_cil_compat_map { |
| 313 | name: "system_ext_32.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 314 | bottom_half: [":32.0.board.ignore.map{.system_ext_private}"], |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 315 | top_half: "system_ext_33.0.ignore.cil", |
| 316 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 317 | version: "32.0", |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | se_cil_compat_map { |
| 321 | name: "system_ext_33.0.ignore.cil", |
| 322 | bottom_half: [":33.0.board.ignore.map{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 323 | system_ext_specific: true, |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 324 | top_half: "system_ext_34.0.ignore.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 325 | version: "33.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | se_cil_compat_map { |
| 329 | name: "product_30.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 330 | bottom_half: [":30.0.board.ignore.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 331 | top_half: "product_31.0.ignore.cil", |
| 332 | product_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 333 | version: "30.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | se_cil_compat_map { |
| 337 | name: "product_31.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 338 | bottom_half: [":31.0.board.ignore.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 339 | top_half: "product_32.0.ignore.cil", |
| 340 | product_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 341 | version: "31.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | se_cil_compat_map { |
| 345 | name: "product_32.0.ignore.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 346 | bottom_half: [":32.0.board.ignore.map{.product_private}"], |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 347 | top_half: "product_33.0.ignore.cil", |
| 348 | product_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 349 | version: "32.0", |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | se_cil_compat_map { |
| 353 | name: "product_33.0.ignore.cil", |
| 354 | bottom_half: [":33.0.board.ignore.map{.product_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 355 | product_specific: true, |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 356 | top_half: "product_34.0.ignore.cil", |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 357 | version: "33.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | se_compat_cil { |
| 361 | name: "29.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 362 | srcs: [":29.0.board.compat.cil{.plat_private}"], |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 363 | version: "29.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 364 | } |
| 365 | |
| 366 | se_compat_cil { |
| 367 | name: "30.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 368 | srcs: [":30.0.board.compat.cil{.plat_private}"], |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 369 | version: "30.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | se_compat_cil { |
| 373 | name: "31.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 374 | srcs: [":31.0.board.compat.cil{.plat_private}"], |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 375 | version: "31.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | se_compat_cil { |
| 379 | name: "32.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 380 | srcs: [":32.0.board.compat.cil{.plat_private}"], |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 381 | version: "32.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | se_compat_cil { |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 385 | name: "33.0.compat.cil", |
| 386 | srcs: [":33.0.board.compat.cil{.plat_private}"], |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 387 | version: "33.0", |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | se_compat_cil { |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 391 | name: "system_ext_29.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 392 | srcs: [":29.0.board.compat.cil{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 393 | stem: "29.0.compat.cil", |
| 394 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 395 | version: "29.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | se_compat_cil { |
| 399 | name: "system_ext_30.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 400 | srcs: [":30.0.board.compat.cil{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 401 | stem: "30.0.compat.cil", |
| 402 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 403 | version: "30.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | se_compat_cil { |
| 407 | name: "system_ext_31.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 408 | srcs: [":31.0.board.compat.cil{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 409 | stem: "31.0.compat.cil", |
| 410 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 411 | version: "31.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 412 | } |
| 413 | |
| 414 | se_compat_cil { |
| 415 | name: "system_ext_32.0.compat.cil", |
Inseob Kim | 4196403 | 2022-04-22 07:50:22 +0900 | [diff] [blame] | 416 | srcs: [":32.0.board.compat.cil{.system_ext_private}"], |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 417 | stem: "32.0.compat.cil", |
| 418 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 419 | version: "32.0", |
Inseob Kim | baee4a2 | 2021-12-21 21:03:32 +0900 | [diff] [blame] | 420 | } |
Inseob Kim | 16d3be3 | 2022-01-07 09:15:27 +0900 | [diff] [blame] | 421 | |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 422 | se_compat_cil { |
| 423 | name: "system_ext_33.0.compat.cil", |
| 424 | srcs: [":33.0.board.compat.cil{.system_ext_private}"], |
| 425 | stem: "33.0.compat.cil", |
| 426 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 427 | version: "33.0", |
Inseob Kim | 4ae0511 | 2022-05-02 14:03:46 +0900 | [diff] [blame] | 428 | } |
| 429 | |
Inseob Kim | 16d3be3 | 2022-01-07 09:15:27 +0900 | [diff] [blame] | 430 | se_compat_test { |
| 431 | name: "sepolicy_compat_test", |
| 432 | } |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 433 | |
| 434 | se_build_files { |
| 435 | name: "34.0.board.compat.map", |
| 436 | srcs: ["compat/34.0/34.0.cil"], |
| 437 | } |
| 438 | |
| 439 | se_build_files { |
| 440 | name: "34.0.board.compat.cil", |
| 441 | srcs: ["compat/34.0/34.0.compat.cil"], |
| 442 | } |
| 443 | |
| 444 | se_build_files { |
| 445 | name: "34.0.board.ignore.map", |
| 446 | srcs: ["compat/34.0/34.0.ignore.cil"], |
| 447 | } |
| 448 | |
| 449 | se_cil_compat_map { |
| 450 | name: "plat_34.0.cil", |
| 451 | stem: "34.0.cil", |
| 452 | bottom_half: [":34.0.board.compat.map{.plat_private}"], |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 453 | version: "34.0", |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 454 | } |
| 455 | |
| 456 | se_cil_compat_map { |
| 457 | name: "system_ext_34.0.cil", |
| 458 | stem: "34.0.cil", |
| 459 | bottom_half: [":34.0.board.compat.map{.system_ext_private}"], |
| 460 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 461 | version: "34.0", |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | se_cil_compat_map { |
| 465 | name: "product_34.0.cil", |
| 466 | stem: "34.0.cil", |
| 467 | bottom_half: [":34.0.board.compat.map{.product_private}"], |
| 468 | product_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 469 | version: "34.0", |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | se_cil_compat_map { |
| 473 | name: "34.0.ignore.cil", |
| 474 | bottom_half: [":34.0.board.ignore.map{.plat_private}"], |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 475 | version: "34.0", |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 476 | } |
| 477 | |
| 478 | se_cil_compat_map { |
| 479 | name: "system_ext_34.0.ignore.cil", |
| 480 | stem: "34.0.ignore.cil", |
| 481 | bottom_half: [":34.0.board.ignore.map{.system_ext_private}"], |
| 482 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 483 | version: "34.0", |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 484 | } |
| 485 | |
| 486 | se_cil_compat_map { |
| 487 | name: "product_34.0.ignore.cil", |
| 488 | stem: "34.0.ignore.cil", |
| 489 | bottom_half: [":34.0.board.ignore.map{.product_private}"], |
| 490 | product_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 491 | version: "34.0", |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | se_compat_cil { |
| 495 | name: "34.0.compat.cil", |
| 496 | srcs: [":34.0.board.compat.cil{.plat_private}"], |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 497 | version: "34.0", |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | se_compat_cil { |
| 501 | name: "system_ext_34.0.compat.cil", |
| 502 | stem: "34.0.compat.cil", |
| 503 | srcs: [":34.0.board.compat.cil{.system_ext_private}"], |
| 504 | system_ext_specific: true, |
Inseob Kim | 61d6beb | 2023-08-23 08:37:20 +0000 | [diff] [blame] | 505 | version: "34.0", |
Inseob Kim | 78fd639 | 2023-06-23 15:48:04 +0900 | [diff] [blame] | 506 | } |