Fix ffx assembly build rules.

This fixes the following build target:
$ tools/bazel build //src/examples/basic_package:my_package_archive

Change-Id: Icc38477e10641379964d9212821ac7f1e40a5ecd
1 file changed
tree: d2177d8d40361bb5fc59fd7ce2e6167a6bc0b446
  1. src/
  2. tools/
  3. vendor/
  4. .bazelrc
  5. .bazelversion
  6. .gitignore
  7. .gitmodules
  8. AUTHORS
  9. CONTRIBUTING.md
  10. LICENSE
  11. OWNERS
  12. PATENTS
  13. README.md
  14. WORKSPACE.bazel
README.md

flutter-embedder.git

The Flutter & Dart embedders (FDE) repo holds the source code for building the Fuchsia-specific Flutter & Dart embedders outside of fuchsia.git.

This repository is a work in progress and should be considered experimental.

Fetch submodules

This project uses git submodules. After checking out a branch run the git submodule command to update the dependencies.

git submodule update --init --recursive

Build instructions

The FDE repository uses Bazel for its build system. To ensure that you are using the version of Bazel that was tested in CQ/CI we recommend using bazelisk. You can either add bazelisk to your path or invoke it directly.

# Assumes that FDE_REPO is set to your checkout directory
export PATH="${FDE_REPO}/tools/bazel:$PATH"