2017-12-06 09:56:49 -05:00
|
|
|
workspace(name = "bazel_integration_test")
|
|
|
|
|
2018-05-29 18:35:48 -04:00
|
|
|
#
|
|
|
|
# Download Bazel toolchain dependencies as needed by build actions
|
|
|
|
#
|
2018-08-21 04:37:09 -04:00
|
|
|
local_repository(
|
2017-08-21 11:23:47 -04:00
|
|
|
name = "build_bazel_rules_typescript",
|
2018-08-21 04:37:09 -04:00
|
|
|
path = "node_modules/@bazel/typescript",
|
2018-05-29 18:35:48 -04:00
|
|
|
)
|
2018-08-14 17:07:22 -04:00
|
|
|
load("@build_bazel_rules_typescript//:package.bzl", "rules_typescript_dependencies")
|
|
|
|
rules_typescript_dependencies()
|
2018-05-29 18:35:48 -04:00
|
|
|
|
|
|
|
http_archive(
|
|
|
|
name = "io_bazel_rules_sass",
|
2018-08-14 17:07:22 -04:00
|
|
|
url = "https://github.com/bazelbuild/rules_sass/archive/1.11.0.zip",
|
|
|
|
strip_prefix = "rules_sass-1.11.0",
|
|
|
|
sha256 = "dbe9fb97d5a7833b2a733eebc78c9c1e3880f676ac8af16e58ccf2139cbcad03",
|
2018-05-29 18:35:48 -04:00
|
|
|
)
|
|
|
|
|
2018-06-25 14:22:23 -04:00
|
|
|
#
|
|
|
|
# Point Bazel to WORKSPACEs that live in subdirectories
|
|
|
|
#
|
|
|
|
|
|
|
|
local_repository(
|
|
|
|
name = "angular",
|
2018-08-21 04:37:09 -04:00
|
|
|
path = "../..",
|
2018-06-25 14:22:23 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
local_repository(
|
|
|
|
name = "rxjs",
|
|
|
|
path = "node_modules/rxjs/src",
|
|
|
|
)
|
|
|
|
|
2018-05-29 18:35:48 -04:00
|
|
|
#
|
|
|
|
# Load and install our dependencies downloaded above.
|
|
|
|
#
|
|
|
|
|
|
|
|
load("@build_bazel_rules_nodejs//:defs.bzl", "check_bazel_version", "node_repositories")
|
|
|
|
|
2018-08-05 22:10:07 -04:00
|
|
|
check_bazel_version("0.16.0")
|
2018-09-05 15:38:53 -04:00
|
|
|
node_repositories(
|
|
|
|
package_json = ["//:package.json"],
|
|
|
|
node_version = "10.9.0",
|
|
|
|
yarn_version = "1.9.2",
|
|
|
|
node_repositories = {
|
|
|
|
"10.9.0-darwin_amd64": ("node-v10.9.0-darwin-x64.tar.gz", "node-v10.9.0-darwin-x64", "3c4fe75dacfcc495a432a7ba2dec9045cff359af2a5d7d0429c84a424ef686fc"),
|
|
|
|
"10.9.0-linux_amd64": ("node-v10.9.0-linux-x64.tar.xz", "node-v10.9.0-linux-x64", "c5acb8b7055ee0b6ac653dc4e458c5db45348cecc564b388f4ed1def84a329ff"),
|
|
|
|
"10.9.0-windows_amd64": ("node-v10.9.0-win-x64.zip", "node-v10.9.0-win-x64", "6a75cdbb69d62ed242d6cbf0238a470bcbf628567ee339d4d098a5efcda2401e"),
|
|
|
|
},
|
|
|
|
yarn_repositories = {
|
|
|
|
"1.9.2": ("yarn-v1.9.2.tar.gz", "yarn-v1.9.2", "3ad69cc7f68159a562c676e21998eb21b44138cae7e8fe0749a7d620cf940204"),
|
|
|
|
},
|
|
|
|
)
|
2018-05-29 18:35:48 -04:00
|
|
|
|
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
|
|
|
|
|
|
|
|
go_rules_dependencies()
|
|
|
|
go_register_toolchains()
|
|
|
|
|
|
|
|
load("@io_bazel_rules_webtesting//web:repositories.bzl", "browser_repositories", "web_test_repositories")
|
|
|
|
|
|
|
|
web_test_repositories()
|
|
|
|
browser_repositories(
|
|
|
|
chromium = True,
|
|
|
|
firefox = True,
|
|
|
|
)
|
|
|
|
|
2018-01-17 17:49:08 -05:00
|
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_setup_workspace")
|
2017-12-06 09:56:49 -05:00
|
|
|
|
2017-12-22 12:36:47 -05:00
|
|
|
ts_setup_workspace()
|
2017-12-06 09:56:49 -05:00
|
|
|
|
2018-06-04 13:45:27 -04:00
|
|
|
load("@io_bazel_rules_sass//sass:sass_repositories.bzl", "sass_repositories")
|
2018-05-29 18:35:48 -04:00
|
|
|
|
|
|
|
sass_repositories()
|
|
|
|
|
2018-05-11 02:35:21 -04:00
|
|
|
load("@angular//:index.bzl", "ng_setup_workspace")
|
|
|
|
|
|
|
|
ng_setup_workspace()
|