如何引用genrule提供的目录路径内的文件?我正在尝试以下方法,但似乎不起作用: http_file( ... name = "zip_structure",does not work either
# srcs = glob([":zip_structure/**/*"]), # does not work e
我正在尝试将一个项目从buck迁移到bazel,并寻找一个相当于$(classpath)宏的泛型。bazel中是否有类似的东西可用于获取给定java_library的类路径的jars列表?我想出的最好方法是迭代依赖项列表,并使用$(execpath)宏获取对应的jar:for dep in deps: # deps are the same dependenciesspecified for the java_librar