Android.bp 2.0 KB

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