Skip to content
Snippets Groups Projects
Commit 57331a31 authored by tholenst's avatar tholenst Committed by Tink Team
Browse files

Add the "inc" files to the dependent headers tar file.

PiperOrigin-RevId: 218654220
GitOrigin-RevId: 9e14adb3fa91563e9f948e90d1841d67d6221289
parent 68dbb5a0
No related branches found
No related tags found
No related merge requests found
......@@ -524,9 +524,12 @@ genrule(
],
# The command below collects headers of Tink dependencies in two steps:
# * First a tar-archive with all Abseil .h-files is created.
# * Then, absl .inc files are added to the tar-archive.
# * Then .h-files of Protobuf library are added to the tar-archive.
cmd = "tar -cv -f $@ -C external/com_google_absl --dereference " +
" `cd external/com_google_absl; find absl/ -name \"*.h\"`; " +
"tar -rv -f $@ -C external/com_google_absl --dereference " +
" `cd external/com_google_absl; find absl/ -name \"*.inc\"`; " +
"tar -rv -f $@ -C external/com_google_protobuf/src --dereference " +
" `cd external/com_google_protobuf/src/; find google/ -name \"*.h\"`",
local = 1, # To avoid sandboxing; otherwise cannot access srcs.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment