1# NOTE: THIS FILE IS EXPERIMENTAL FOR THE BAZEL MIGRATION AND NOT USED FOR 2# YOUR BUILDS CURRENTLY. 3# 4# It is not yet the source of truth for your build. If you're looking to modify 5# the build file, modify the Android.bp file instead. Do *not* modify this file 6# unless you have coordinated with the team managing the Soong to Bazel 7# migration. 8 9filegroup( 10 name = "tools", 11 srcs = glob(["**/**"]), 12 visibility = ["//prebuilts/clang/host/linux-x86:__pkg__"], 13) 14 15# Kleaf stuff 16 17# Value for -B. These are directories! 18filegroup( 19 name = "bin_dirs", 20 srcs = [ 21 "lib/gcc/x86_64-linux/4.8.3", 22 "x86_64-linux/lib64", 23 ], 24 visibility = ["@kleaf_clang_toolchain//:__subpackages__"], 25) 26 27# Files for :bin_dirs 28filegroup( 29 name = "bin_files", 30 srcs = glob([ 31 "x86_64-linux/lib64/**", 32 "lib/gcc/x86_64-linux/4.8.3/**", 33 ]), 34 visibility = ["@kleaf_clang_toolchain//:__subpackages__"], 35) 36 37# Value for -L. These are directories! 38alias( 39 name = "lib_files", 40 actual = ":bin_files", 41 visibility = ["@kleaf_clang_toolchain//:__subpackages__"], 42) 43 44# Files for :lib_dirs 45alias( 46 name = "lib_dirs", 47 actual = ":bin_dirs", 48 visibility = ["@kleaf_clang_toolchain//:__subpackages__"], 49) 50