Home | History | Annotate | Download | only in programs
      1 // Copyright (C) 2016 The Android Open Source Project
      2 
      3 cc_binary_host {
      4     name: "lz4",
      5     srcs: [
      6         "datagen.c",
      7         "bench.c",
      8         "lz4io.c",
      9         "lz4cli.c",
     10     ],
     11     static_libs: ["liblz4"],
     12     stl: "libc++_static",
     13 }
     14 
     15 cc_binary_host {
     16     name: "lz4c",
     17     cflags: ["-DENABLE_LZ4C_LEGACY_OPTIONS"],
     18     srcs: [
     19         "datagen.c",
     20         "bench.c",
     21         "lz4io.c",
     22         "lz4cli.c",
     23     ],
     24     static_libs: ["liblz4"],
     25     stl: "libc++_static",
     26 }
     27