Home | History | Annotate | Download | only in types
      1 // Bluetooth types
      2 cc_library_static {
      3     name: "libbluetooth-types",
      4     vendor_available: true,
      5     defaults: ["fluoride_types_defaults"],
      6     cflags: [
      7         /* we export all classes, so change default visibility, instead of having EXPORT_SYMBOL on each class*/
      8         "-fvisibility=default",
      9     ],
     10     host_supported: true,
     11     srcs: [
     12         "raw_address.cc",
     13     ],
     14     export_include_dirs: ["./"],
     15 }
     16 
     17 // ========================================================
     18 cc_test {
     19     name: "net_test_types",
     20     test_suites: ["device-tests"],
     21     defaults: ["fluoride_defaults"],
     22     host_supported: true,
     23     srcs: [
     24         "test/raw_address_unittest.cc",
     25     ],
     26 }
     27