Home | History | Annotate | Download | only in bugreportz
      1 // bugreportz
      2 // ==========
      3 cc_binary {
      4     name: "bugreportz",
      5 
      6     srcs: [
      7         "bugreportz.cpp",
      8         "main.cpp",
      9     ],
     10 
     11     cflags: [
     12         "-Werror",
     13         "-Wall",
     14     ],
     15 
     16     shared_libs: [
     17         "libbase",
     18         "libcutils",
     19     ],
     20 }
     21 
     22 // bugreportz_test
     23 // ===============
     24 cc_test {
     25     name: "bugreportz_test",
     26     test_suites: ["device-tests"],
     27 
     28     cflags: [
     29         "-Werror",
     30         "-Wall",
     31     ],
     32 
     33     srcs: [
     34         "bugreportz.cpp",
     35         "bugreportz_test.cpp",
     36     ],
     37 
     38     static_libs: ["libgmock"],
     39 
     40     shared_libs: [
     41         "libbase",
     42         "libutils",
     43     ],
     44 }
     45