| # 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/*.c", | |
| ]), | |
| hdrs = glob([ | |
| "include/**/*.h" | |
| ]), | |
| includes = [ | |
| "include/", | |
| ], | |
| deps = [ | |
| "@aws-c-common", | |
| ], | |
| ) |