blob: 2809c9d25b6a59033a79dc36c3025c1b8719609a [file] [log] [blame]
Tri Vo594488f2018-05-07 12:51:52 -07001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17cc_defaults {
18 name: "sepolicy_tools_defaults",
19 cflags: [
20 "-Wall",
21 "-Werror",
22 ],
23 static_libs: ["libsepol"],
24 stl: "none",
Tri Vo594488f2018-05-07 12:51:52 -070025}
26
27cc_binary_host {
28 name: "checkseapp",
29 defaults: ["sepolicy_tools_defaults"],
30 srcs: ["check_seapp.c"],
31 whole_static_libs: ["libpcre2"],
32 cflags: ["-DLINK_SEPOL_STATIC"],
33}
34
35cc_binary_host {
36 name: "checkfc",
37 defaults: ["sepolicy_tools_defaults"],
38 srcs: ["checkfc.c"],
39 static_libs: ["libselinux"],
40}
41
42cc_binary_host {
43 name: "sepolicy-check",
44 defaults: ["sepolicy_tools_defaults"],
45 srcs: ["sepolicy-check.c"],
46}
47
48cc_binary_host {
49 name: "version_policy",
50 defaults: ["sepolicy_tools_defaults"],
51 srcs: ["version_policy.c"],
52}
53
54cc_prebuilt_binary {
55 name: "insertkeys.py",
56 srcs: ["insertkeys.py"],
Tri Vo594488f2018-05-07 12:51:52 -070057 host_supported: true,
58}