tree: 3ca965a762556fe5ce5840d0e5536090d6c2b64e [path history] [tgz]
  1. google_absl/
  2. jsoncpp/
  3. linenoise/
  4. protobuf/
  5. sqlite-amalgamation/
  6. sqlite-src/
  7. upb/
  8. README.md
common/external-src-archives/README.md

These are archives containing the sources of dependencies required to build.

They can be used to create repositories using Bazel's http_archive, like:

  http_archive(
    "name": "my-dependency",
    "url": "file:///prebuilts/tools/common/external-src-archives/mydep/1.0.0/mydep-1.0.0.zip",
    # sha256 to verify archive integrity
    "sha256": "...",
    # optional build file in case the archive file doesn't contain one already.
    "build_file": "...",
  )