/rules_dart

Dart rules for Bazel

Primary LanguageStarlarkApache License 2.0Apache-2.0

Dart rules for Bazel

WARNING: These rules are maintained on an infrequent basis. They were authored as the foundation for what became the dart-lang/rules_dart repo which was later deprecated and archived.

Overview

These build rules are used for building Dart projects with Bazel.

Setup

To use the Dart rules, add the following to your WORKSPACE file to add the external repositories for the Dart toolchain:

git_repository(
    name = "io_bazel_rules_dart",
    remote = "https://github.com/cbracken/rules_dart.git",
    tag = "2.9.3",
)
load("@io_bazel_rules_dart//dart:repositories.bzl", "dart_repositories")

dart_repositories()

Core rules

dart_library: Declares a collection of Dart sources and data and their dependencies.

VM rules

dart_vm_binary: Builds an executable bundle that runs a script or snapshot on the Dart VM.

dart_vm_snapshot: Builds a VM snapshot of a Dart script. WARNING Snapshot files are not guaranteed to be compatible across VM releases.

dart_vm_test: Builds a test that will be executed on the Dart VM.

Web rules

dart_web_application: Compiles the specified script to JavaScript.

dart_web_test: Builds a test that will be executed in the browser.