1package(default_visibility = ["//visibility:public"]) 2 3filegroup( 4 name = "binaries", 5 srcs = glob([ 6 "bin/*", 7 "lib/*", 8 "lib/x86_64-unknown-linux-gnu/*", 9 ]), 10) 11 12filegroup( 13 name = "includes", 14 srcs = glob([ 15 "lib/clang/*/include/**", 16 "include/c++/**", 17 "include/x86_64-unknown-linux-gnu/c++/**", 18 ]), 19) 20 21# Special python3 for u-boot. 22py_runtime( 23 name = "python3", 24 files = glob( 25 ["python3/**"], 26 exclude = [ 27 "**/site-packages/**", 28 ], 29 ), 30 interpreter = "python3/bin/python3", 31 python_version = "PY3", 32 visibility = ["//u-boot:__subpackages__"], 33) 34