android_system_sepolicy/tests/Android.bp
Jeff Vander Stoep 3ca843a57d Prepare python tests to be run in CTS
Bug: 37008075
Test: build, all tests pass. Modify some attributes locally to
    cause tests to fail (verify that they are actually working).
Change-Id: If9f9ece61dff835f38ef9c8a57f5a7baddbae5cd
2017-10-04 19:46:12 +00:00

63 lines
1.3 KiB
Plaintext

cc_library_host_shared {
name: "libsepolwrap",
srcs: ["sepol_wrap.cpp"],
cflags: ["-Wall", "-Werror",],
export_include_dirs: ["include"],
// libsepolwrap gets loaded from the system python, which does not have the
// ASAN runtime. So turn off sanitization for ourself, and use static
// libraries, since the shared libraries will use ASAN.
static_libs: [
"libbase",
"libsepol",
],
stl: "libc++_static",
sanitize: {
never: true,
},
}
python_defaults {
name: "py2_only",
version: {
py2: {
embedded_launcher: true,
enabled: true,
},
py3: {
enabled: false,
},
},
}
python_binary_host {
name: "treble_sepolicy_tests",
srcs: [
"treble_sepolicy_tests.py",
"mini_parser.py",
"policy.py",
],
required: ["libsepolwrap"],
defaults: ["py2_only"],
}
python_binary_host {
name: "sepolicy_tests",
srcs: [
"sepolicy_tests.py",
"policy.py",
],
required: ["libsepolwrap"],
defaults: ["py2_only"],
}
python_binary_host {
name: "searchpolicy",
srcs: [
"searchpolicy.py",
"policy.py",
],
required: ["libsepolwrap"],
defaults: ["py2_only"],
}