use .bazelignore instead of fake repositories

PiperOrigin-RevId: 595931804
This commit is contained in:
Evgenii Kliuchnikov 2024-01-05 01:57:06 -08:00 committed by Copybara-Service
parent 26b1fec26b
commit 2ad58d8603
3 changed files with 7 additions and 26 deletions

6
.bazelignore Normal file
View File

@ -0,0 +1,6 @@
# Exclude Bazel roots (workspaces)
c/fuzz
go
java
js
research

2
.gitattributes vendored
View File

@ -4,10 +4,10 @@ tests/testdata/* binary
**/** export-ignore
# Add top-level files
.bazelignore !export-ignore
BUILD.bazel !export-ignore
CHANGELOG.md !export-ignore
CMakeLists.txt !export-ignore
compiler_config_setting.bzl !export-ignore
CONTRIBUTING.md !export-ignore
LICENSE !export-ignore
MANIFEST.in !export-ignore

View File

@ -1,26 +1 @@
workspace(name = "org_brotli")
local_repository(
name = "ignore_org_brotli_fuzz",
path = "c/fuzz",
)
local_repository(
name = "ignore_org_brotli_go",
path = "go",
)
local_repository(
name = "ignore_org_brotli_java",
path = "java",
)
local_repository(
name = "ignore_org_brotli_js",
path = "js",
)
local_repository(
name = "ignore_org_brotli_research",
path = "research",
)