You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
412 B
26 lines
412 B
# Description:
|
|
# AWS C++ SDK
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
exports_files(["LICENSE"])
|
|
|
|
cc_library(
|
|
name = "aws-c-event-stream",
|
|
srcs = glob([
|
|
"source/*.c",
|
|
]),
|
|
hdrs = glob([
|
|
"include/**/*.h"
|
|
]),
|
|
includes = [
|
|
"include/",
|
|
],
|
|
deps = [
|
|
"@aws-c-common",
|
|
"@aws-checksums",
|
|
],
|
|
)
|