Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 29d1336d authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Run extractor for Go files in build/soong directory"

parents e2bc36f1 ca54088a
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -15,8 +15,18 @@

# The extraction might fail for some source files, so run with -k and then check that
# sufficiently many files were generated.
build/soong/soong_ui.bash --build-mode --all-modules --dir=$PWD -k merge_zips xref_cxx xref_java
declare -r out="${OUT_DIR:-out}"
# Build extraction files for C++ and Java. Build `merge_zips` which we use later.
build/soong/soong_ui.bash --build-mode --all-modules --dir=$PWD -k merge_zips xref_cxx xref_java
#Build extraction file for Go files in build/soong directory.
(cd build/soong;
 ../../prebuilts/build-tools/linux-x86/bin/go_extractor \
    --goroot="${PWD}/../../prebuilts/go/linux-x86" \
    --rules=vnames.go.json \
    --canonicalize_package_corpus \
    --output "${out}/soong/all.go.kzip" \
    ./... )

declare -r kzip_count=$(find "$out" -name '*.kzip' | wc -l)
(($kzip_count>100000)) || { printf "Too few kzip files were generated: %d\n" $kzip_count; exit 1; }

vnames.go.json

0 → 100644
+9 −0
Original line number Diff line number Diff line
[
    {
        "pattern": "(.*)",
        "vname": {
            "corpus": "android.googlesource.com/platform/superproject",
            "path": "build/soong/@1@"
        }
    }
]