Home | History | Annotate | Download | only in test
      1 cc_binary {
      2     name: "mpeg2dec",
      3 
      4     cflags: [
      5         "-DPROFILE_ENABLE",
      6         "-DMD5_DISABLE",
      7         "-DARM",
      8         "-fPIC",
      9         "-Wall",
     10         "-Werror",
     11     ],
     12     local_include_dirs: [
     13         "decoder/",
     14     ],
     15     srcs: ["decoder/main.c"],
     16     static_libs: ["libmpeg2dec"],
     17     shared_libs: ["liblog"],
     18 }
     19