Bootstrap repo with bazel.

Tested with the following command:
$ tools/bazel build //src/examples/basic_package:my_package

Update README.md

Change-Id: Ibced3185c0a9328f87204a55da2aead19a7906d7
16 files changed
tree: 7c4e6c9eec57b22109794c1732fe32b586eaa8eb
  1. src/
  2. tools/
  3. vendor/
  4. .bazelversion
  5. .gitignore
  6. .gitmodules
  7. AUTHORS
  8. CONTRIBUTING.md
  9. LICENSE
  10. OWNERS
  11. PATENTS
  12. README.md
  13. 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"