2017-12-19 18:03:29 -05:00
|
|
|
workspace(name = "angular")
|
2017-09-25 15:40:22 -04:00
|
|
|
|
2018-12-05 15:16:14 -05:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
2018-12-01 19:08:15 -05:00
|
|
|
|
2018-10-22 17:26:52 -04:00
|
|
|
# Uncomment for local bazel rules development
|
|
|
|
#local_repository(
|
|
|
|
# name = "build_bazel_rules_nodejs",
|
|
|
|
# path = "../rules_nodejs",
|
|
|
|
#)
|
|
|
|
#local_repository(
|
|
|
|
# name = "build_bazel_rules_typescript",
|
|
|
|
# path = "../rules_typescript",
|
|
|
|
#)
|
|
|
|
|
2019-02-04 18:53:32 -05:00
|
|
|
# Fetch rules_nodejs so we can install our npm dependencies
|
|
|
|
http_archive(
|
|
|
|
name = "build_bazel_rules_nodejs",
|
2019-02-13 12:47:22 -05:00
|
|
|
sha256 = "1416d03823fed624b49a0abbd9979f7c63bbedfd37890ddecedd2fe25cccebc6",
|
|
|
|
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.18.6/rules_nodejs-0.18.6.tar.gz"],
|
2019-02-04 18:53:32 -05:00
|
|
|
)
|
2018-11-26 00:13:52 -05:00
|
|
|
|
2019-02-04 18:53:32 -05:00
|
|
|
# Fetch the rxjs repository since we build rxjs from source
|
|
|
|
# TODO(gregmagolan): use rxjs bundles in the bazel build
|
2018-10-15 19:51:26 -04:00
|
|
|
http_archive(
|
2018-06-25 14:22:23 -04:00
|
|
|
name = "rxjs",
|
2018-10-15 19:51:26 -04:00
|
|
|
sha256 = "72b0b4e517f43358f554c125e40e39f67688cd2738a8998b4a266981ed32f403",
|
2018-12-06 17:46:51 -05:00
|
|
|
strip_prefix = "package/src",
|
|
|
|
url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz",
|
2018-06-25 14:22:23 -04:00
|
|
|
)
|
|
|
|
|
2019-02-04 18:53:32 -05:00
|
|
|
# Use a mock @npm repository while we are building angular from source
|
|
|
|
# downstream. Angular will get its npm dependencies with in @ngdeps which
|
|
|
|
# is setup in ng_setup_workspace().
|
|
|
|
# TODO(gregmagolan): remove @ngdeps once angular is no longer build from source
|
|
|
|
# downstream and have build use @npm for npm dependencies
|
2018-06-25 14:22:23 -04:00
|
|
|
local_repository(
|
2019-02-04 18:53:32 -05:00
|
|
|
name = "npm",
|
|
|
|
path = "tools/npm_workspace",
|
2018-06-25 14:22:23 -04:00
|
|
|
)
|
|
|
|
|
2019-02-04 18:53:32 -05:00
|
|
|
# Check the bazel version and download npm dependencies
|
|
|
|
load("@build_bazel_rules_nodejs//:defs.bzl", "check_bazel_version", "node_repositories")
|
2018-05-10 16:12:30 -04:00
|
|
|
|
2019-01-04 15:35:57 -05:00
|
|
|
# Bazel version must be at least v0.21.0 because:
|
2019-01-28 13:30:18 -05:00
|
|
|
# - 0.21.0 Using --incompatible_strict_action_env flag fixes cache when running `yarn bazel`
|
|
|
|
# (see https://github.com/angular/angular/issues/27514#issuecomment-451438271)
|
2019-01-04 15:35:57 -05:00
|
|
|
check_bazel_version("0.21.0", """
|
2018-12-01 19:08:15 -05:00
|
|
|
You no longer need to install Bazel on your machine.
|
|
|
|
Angular has a dependency on the @bazel/bazel package which supplies it.
|
|
|
|
Try running `yarn bazel` instead.
|
|
|
|
(If you did run that, check that you've got a fresh `yarn install`)
|
2018-08-05 22:10:07 -04:00
|
|
|
|
|
|
|
""")
|
2018-09-24 16:58:23 -04:00
|
|
|
|
2019-02-04 18:53:32 -05:00
|
|
|
# Setup the Node.js toolchain
|
2018-05-11 02:35:21 -04:00
|
|
|
node_repositories(
|
2018-09-24 16:58:23 -04:00
|
|
|
node_version = "10.9.0",
|
2018-09-11 21:11:32 -04:00
|
|
|
package_json = ["//:package.json"],
|
|
|
|
preserve_symlinks = True,
|
2018-11-20 09:21:05 -05:00
|
|
|
yarn_version = "1.12.1",
|
2018-05-11 02:35:21 -04:00
|
|
|
)
|
2018-05-10 16:12:30 -04:00
|
|
|
|
2019-02-04 18:53:32 -05:00
|
|
|
# Setup the angular toolchain which installs npm dependencies into @ngdeps
|
|
|
|
load("//tools:ng_setup_workspace.bzl", "ng_setup_workspace")
|
|
|
|
|
|
|
|
ng_setup_workspace()
|
|
|
|
|
|
|
|
# Install all bazel dependencies of the @ngdeps npm packages
|
|
|
|
load("@ngdeps//:install_bazel_dependencies.bzl", "install_bazel_dependencies")
|
2018-10-04 16:14:14 -04:00
|
|
|
|
2019-02-04 18:53:32 -05:00
|
|
|
install_bazel_dependencies()
|
|
|
|
|
|
|
|
# Load angular dependencies
|
|
|
|
load("//packages/bazel:package.bzl", "rules_angular_dev_dependencies")
|
|
|
|
|
|
|
|
rules_angular_dev_dependencies()
|
|
|
|
|
|
|
|
# Load karma dependencies
|
|
|
|
load("@build_bazel_rules_karma//:package.bzl", "rules_karma_dependencies")
|
|
|
|
|
|
|
|
rules_karma_dependencies()
|
|
|
|
|
|
|
|
# Setup the rules_webtesting toolchain
|
2018-05-10 16:12:30 -04:00
|
|
|
load("@io_bazel_rules_webtesting//web:repositories.bzl", "browser_repositories", "web_test_repositories")
|
|
|
|
|
|
|
|
web_test_repositories()
|
2018-09-24 16:58:23 -04:00
|
|
|
|
2018-05-10 16:12:30 -04:00
|
|
|
browser_repositories(
|
|
|
|
chromium = True,
|
|
|
|
firefox = True,
|
|
|
|
)
|
|
|
|
|
2019-02-04 18:53:32 -05:00
|
|
|
# Setup the rules_typescript tooolchain
|
2018-05-10 16:12:30 -04:00
|
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_setup_workspace")
|
|
|
|
|
|
|
|
ts_setup_workspace()
|
|
|
|
|
2019-02-04 18:53:32 -05:00
|
|
|
# Setup the rules_sass toolchain
|
2018-04-25 12:23:20 -04:00
|
|
|
load("@io_bazel_rules_sass//sass:sass_repositories.bzl", "sass_repositories")
|
2018-09-24 16:58:23 -04:00
|
|
|
|
2018-04-25 12:23:20 -04:00
|
|
|
sass_repositories()
|
|
|
|
|
2019-02-04 18:53:32 -05:00
|
|
|
# Setup the skydoc toolchain
|
2018-04-25 12:23:20 -04:00
|
|
|
load("@io_bazel_skydoc//skylark:skylark.bzl", "skydoc_repositories")
|
2018-09-24 16:58:23 -04:00
|
|
|
|
2018-04-25 12:23:20 -04:00
|
|
|
skydoc_repositories()
|