• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
15cc_defaults { name: "selinux_policy_version", cflags: ["-DSEPOLICY_VERSION=30"], }
16
17se_filegroup {
18    name: "26.0.board.compat.map",
19    srcs: [
20        "compat/26.0/26.0.cil",
21    ],
22}
23
24se_filegroup {
25    name: "27.0.board.compat.map",
26    srcs: [
27        "compat/27.0/27.0.cil",
28    ],
29}
30
31se_filegroup {
32    name: "28.0.board.compat.map",
33    srcs: [
34        "compat/28.0/28.0.cil",
35    ],
36}
37
38se_filegroup {
39    name: "26.0.board.ignore.map",
40    srcs: [
41        "compat/26.0/26.0.ignore.cil",
42    ],
43}
44
45se_filegroup {
46    name: "27.0.board.ignore.map",
47    srcs: [
48        "compat/27.0/27.0.ignore.cil",
49    ],
50}
51
52se_filegroup {
53    name: "28.0.board.ignore.map",
54    srcs: [
55        "compat/28.0/28.0.ignore.cil",
56    ],
57}
58
59se_cil_compat_map {
60    name: "26.0.cil",
61    bottom_half: [":26.0.board.compat.map"],
62    top_half: "27.0.cil",
63}
64
65se_cil_compat_map {
66    name: "27.0.cil",
67    bottom_half: [":27.0.board.compat.map"],
68    top_half: "28.0.cil",
69}
70
71se_cil_compat_map {
72    name: "28.0.cil",
73    bottom_half: [":28.0.board.compat.map"],
74    // top_half: "29.0.cil",
75}
76
77se_cil_compat_map {
78    name: "26.0.ignore.cil",
79    bottom_half: [":26.0.board.ignore.map"],
80    top_half: "27.0.ignore.cil",
81}
82
83se_cil_compat_map {
84    name: "27.0.ignore.cil",
85    bottom_half: [":27.0.board.ignore.map"],
86    top_half: "28.0.ignore.cil",
87}
88
89se_cil_compat_map {
90    name: "28.0.ignore.cil",
91    bottom_half: [":28.0.board.ignore.map"],
92    // top_half: "29.0.ignore.cil",
93}
94