31 lines
589 B (Stored with Git LFS)
Text
31 lines
589 B (Stored with Git LFS)
Text
# Description:
|
|
# AWS C++ SDK
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
exports_files(["LICENSE"])
|
|
|
|
cc_library(
|
|
name = "aws-checksums",
|
|
srcs = select({
|
|
"@org_tensorflow//tensorflow:windows": glob([
|
|
"source/visualc/*.c",
|
|
]),
|
|
"//conditions:default": [],
|
|
}) + glob([
|
|
"source/intel/*.c",
|
|
"source/arm/*.c",
|
|
"source/*.c",
|
|
]),
|
|
hdrs = glob([
|
|
"include/**/*.h"
|
|
]),
|
|
includes = [
|
|
"include/",
|
|
],
|
|
deps = [
|
|
"@aws-c-common",
|
|
],
|
|
)
|