Tri Vo | a5cfd3e | 2018-03-22 11:35:02 -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 | 601ebb4 | 2021-02-03 23:07:40 -0800 | [diff] [blame] | 15 | package { |
| 16 | // http://go/android-license-faq |
| 17 | // A large-scale-change added 'default_applicable_licenses' to import |
| 18 | // the below license kinds from "system_sepolicy_license": |
| 19 | // SPDX-license-identifier-Apache-2.0 |
| 20 | default_applicable_licenses: ["system_sepolicy_license"], |
| 21 | } |
| 22 | |
Tri Vo | a5cfd3e | 2018-03-22 11:35:02 -0700 | [diff] [blame] | 23 | bootstrap_go_package { |
| 24 | name: "soong-selinux", |
| 25 | pkgPath: "android/soong/selinux", |
| 26 | deps: [ |
Tri Vo | 84e247a | 2018-03-25 20:03:58 -0700 | [diff] [blame] | 27 | "blueprint", |
| 28 | "soong", |
Tri Vo | a5cfd3e | 2018-03-22 11:35:02 -0700 | [diff] [blame] | 29 | "soong-android", |
Tri Vo | 84e247a | 2018-03-25 20:03:58 -0700 | [diff] [blame] | 30 | "soong-genrule", |
Inseob Kim | cd61649 | 2020-03-24 23:06:40 +0900 | [diff] [blame] | 31 | "soong-sysprop", |
Tri Vo | a5cfd3e | 2018-03-22 11:35:02 -0700 | [diff] [blame] | 32 | ], |
| 33 | srcs: [ |
Yi-Yo Chiang | 2c18965 | 2021-11-08 19:30:04 +0800 | [diff] [blame] | 34 | "bug_map.go", |
Inseob Kim | 619e4a7 | 2021-03-15 14:53:55 +0900 | [diff] [blame] | 35 | "build_files.go", |
Tri Vo | a5cfd3e | 2018-03-22 11:35:02 -0700 | [diff] [blame] | 36 | "cil_compat_map.go", |
Yi-Yo Chiang | 41c34d6 | 2021-04-13 02:44:41 +0800 | [diff] [blame] | 37 | "compat_cil.go", |
Inseob Kim | 6d79030 | 2022-08-12 20:32:40 +0900 | [diff] [blame] | 38 | "mac_permissions.go", |
Inseob Kim | 7e8bd1e | 2021-03-17 18:59:43 +0900 | [diff] [blame] | 39 | "policy.go", |
Inseob Kim | b554e59 | 2019-04-15 20:10:46 +0900 | [diff] [blame] | 40 | "selinux.go", |
| 41 | "selinux_contexts.go", |
Inseob Kim | d581661 | 2021-09-15 03:01:05 +0000 | [diff] [blame] | 42 | "sepolicy_freeze.go", |
Inseob Kim | 24401df | 2021-12-29 13:54:49 +0900 | [diff] [blame] | 43 | "sepolicy_neverallow.go", |
Inseob Kim | 1c056b1 | 2021-04-30 00:11:43 +0900 | [diff] [blame] | 44 | "sepolicy_vers.go", |
Inseob Kim | ebe6f38 | 2021-03-24 21:12:36 +0900 | [diff] [blame] | 45 | "versioned_policy.go", |
Pawan | 0ecf99d | 2022-09-12 23:20:53 +0000 | [diff] [blame^] | 46 | "service_fuzzer_bindings.go", |
| 47 | "validate_bindings.go", |
Tri Vo | a5cfd3e | 2018-03-22 11:35:02 -0700 | [diff] [blame] | 48 | ], |
| 49 | pluginFor: ["soong_build"], |
| 50 | } |