1cc_library( 2 name = "gfxstream-magma-server", 3 srcs = [ 4 "Decoder.cpp", 5 "magma_dec/magma_dec.cpp", 6 "magma_dec/magma_server_context.cpp", 7 ] + glob(["**/*.h"]), 8 includes = ["magma_dec"], 9 visibility = ["//visibility:public"], 10 deps = [ 11 "//hardware/google/gfxstream/host:gfxstream_host_headers", 12 "//hardware/google/gfxstream/host/apigen-codec-common", 13 "//hardware/google/gfxstream/third-party/fuchsia/magma:magma-headers", 14 ], 15) 16 17cc_library( 18 name = "magma-headers", 19 hdrs = glob(["*.h"]), 20 visibility = ["//visibility:public"], 21) 22