workspace(name = "bazel_integration_test") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # Fetch rules_nodejs so we can install our npm dependencies http_archive( name = "build_bazel_rules_nodejs", sha256 = "1416d03823fed624b49a0abbd9979f7c63bbedfd37890ddecedd2fe25cccebc6", urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.18.6/rules_nodejs-0.18.6.tar.gz"], ) # Fetch sass rules for compiling sass files http_archive( name = "io_bazel_rules_sass", sha256 = "dbe9fb97d5a7833b2a733eebc78c9c1e3880f676ac8af16e58ccf2139cbcad03", strip_prefix = "rules_sass-1.11.0", url = "https://github.com/bazelbuild/rules_sass/archive/1.11.0.zip", ) # Fetch the angular repository since we build angular from source # TODO(gregmagolan): use angular bundles in the Bazel build local_repository( name = "angular", path = "../..", ) # Check the bazel version and download npm dependencies load("@build_bazel_rules_nodejs//:defs.bzl", "check_bazel_version", "node_repositories", "yarn_install") # Bazel version must be at least v0.21.0 because: # - 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) check_bazel_version("0.21.0", """ 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`) """) # Setup the Node.js toolchain node_repositories( node_version = "10.9.0", yarn_version = "1.12.1", ) # Install our npm dependencies into @npm yarn_install( name = "npm", data = [ # Needed because this tsconfig file is used in the "postinstall" script. "//:angular-metadata.tsconfig.json", # Need a reference to @angular here so that Bazel sets up the # external repository before calling yarn_install "@angular//:LICENSE", ], package_json = "//src:package.json", yarn_lock = "//src:yarn.lock", ) # Install all bazel dependencies of our npm packages load("@npm//:install_bazel_dependencies.bzl", "install_bazel_dependencies") install_bazel_dependencies() # Load karma dependencies load("@build_bazel_rules_karma//:package.bzl", "rules_karma_dependencies") rules_karma_dependencies() # Setup the rules_webtesting toolchain load("@io_bazel_rules_webtesting//web:repositories.bzl", "web_test_repositories") web_test_repositories() # Temporary work-around for https://github.com/angular/angular/issues/28681 # TODO(gregmagolan): go back to @io_bazel_rules_webtesting browser_repositories load("@angular//:browser_repositories.bzl", "browser_repositories") browser_repositories() # Setup the rules_typescript tooolchain load("@build_bazel_rules_typescript//:defs.bzl", "ts_setup_workspace") ts_setup_workspace() # Setup the rules_sass toolchain load("@io_bazel_rules_sass//sass:sass_repositories.bzl", "sass_repositories") sass_repositories() # Setup the angular toolchain. This integration test no longer builds Angular from source, # but we still need to set up the "angular" workspace since some Bazel rules depend on # the "ngdeps" repository. This can be fixed if we switched the Angular repository to the # "npm" repository for the bazel managed dependencies. load("@angular//:index.bzl", "ng_setup_workspace") ng_setup_workspace()