Home | History | Annotate | Download | only in tests
      1 cc_library_host_shared {
      2     name: "libsepolwrap",
      3     srcs: ["sepol_wrap.cpp"],
      4     shared_libs: ["libbase", "libsepol"],
      5     cflags: ["-Wall", "-Werror",],
      6     export_include_dirs: ["include"],
      7 }
      8 
      9 cc_prebuilt_binary {
     10     name: "policy.py",
     11     srcs: ["policy.py"],
     12     host_supported: true,
     13     required: ["libsepolwrap"],
     14 }
     15 
     16 cc_prebuilt_binary {
     17     name: "treble_sepolicy_tests.py",
     18     srcs: ["treble_sepolicy_tests.py"],
     19     host_supported: true,
     20     required: ["policy.py"],
     21 }
     22