mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-18 02:41:49 +02:00
16 lines
405 B
Python
16 lines
405 B
Python
filegroup(
|
|
name = "_tools-gui-gulp-files",
|
|
srcs = [
|
|
"package.json",
|
|
"gulpfile.babel.js",
|
|
] + glob(["gulp-tasks/**"]),
|
|
)
|
|
|
|
genrule(
|
|
name = "tools-gui-gulp",
|
|
srcs = [":_tools-gui-gulp-files"],
|
|
outs = ["tools-gui-gulp.jar"],
|
|
cmd = "cd tools/gui && find . -type f -exec touch -t 201806280000 {} \; && jar Mcf ../../$@ .",
|
|
visibility = ["//visibility:public"],
|
|
)
|