File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
src/test/shell/integration Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -274,13 +274,13 @@ function test_packages_cleared() {
274274 # is still low (external packages don't contribute there). We can lower this
275275 # number again once we remove WORKSPACE logic and move repo rules to not use
276276 # Package anymore.
277- [[ " $package_count " -le 53 ]] \
277+ [[ " $package_count " -le 56 ]] \
278278 || fail " package count $package_count too high"
279279 globs_count=" $( extract_histogram_count " $histo_file " " GlobsValue$" ) "
280280 [[ " $globs_count " -le 1 ]] \
281281 || fail " globs count $globs_count too high"
282282 module_count=" $( extract_histogram_count " $histo_file " ' eval.Module$' ) "
283- [[ " $module_count " -le 270 ]] \
283+ [[ " $module_count " -le 295 ]] \
284284 || fail " Module count $module_count too high"
285285 ct_count=" $( extract_histogram_count " $histo_file " \
286286 ' RuleConfiguredTarget$' ) "
Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ filegroup(
7777 name = "bzl_srcs" ,
7878 srcs = [
7979 "//tools:build_defs.bzl" ,
80+ "//tools/android:bzl_srcs" ,
8081 "//tools/build_defs:bzl_srcs" ,
8182 "//tools/build_rules:bzl_srcs" ,
8283 "//tools/cpp:bzl_srcs" ,
Original file line number Diff line number Diff line change 1+ filegroup(
2+ name = "bzl_srcs",
3+ srcs = glob(["*.bzl"]),
4+ visibility = ["//tools:__pkg__"],
5+ )
You can’t perform that action at this time.
0 commit comments