This change moves the `dev-infra/browsers` folder into `dev-infra/bazel`. The browser folder is providing custom configuration for Bazel, so it should live within the `bazel` folder for a more well-structured `dev-infra` folder. PR Close #42268
11 lines
286 B
Python
11 lines
286 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
# Make source files available for distribution via pkg_npm
|
|
filegroup(
|
|
name = "files",
|
|
srcs = glob(["*"]) + [
|
|
"//dev-infra/bazel/browsers/chromium:files",
|
|
"//dev-infra/bazel/browsers/firefox:files",
|
|
],
|
|
)
|