| 
									
										
										
										
											2017-12-06 06:56:49 -08:00
										 |  |  | workspace(name = "bazel_integration_test") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-29 15:35:48 -07:00
										 |  |  | # | 
					
						
							|  |  |  | # Download Bazel toolchain dependencies as needed by build actions | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-09 10:22:00 -08:00
										 |  |  | http_archive( | 
					
						
							| 
									
										
										
										
											2017-08-22 16:56:29 -07:00
										 |  |  |     name = "build_bazel_rules_nodejs", | 
					
						
							| 
									
										
										
										
											2018-05-30 18:15:38 -07:00
										 |  |  |     url = "https://github.com/bazelbuild/rules_nodejs/archive/0.9.1.zip", | 
					
						
							|  |  |  |     strip_prefix = "rules_nodejs-0.9.1", | 
					
						
							|  |  |  |     sha256 = "6139762b62b37c1fd171d7f22aa39566cb7dc2916f0f801d505a9aaf118c117f", | 
					
						
							| 
									
										
										
										
											2017-08-22 16:56:29 -07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-30 18:15:38 -07:00
										 |  |  | http_archive( | 
					
						
							|  |  |  |     name = "io_bazel_rules_webtesting", | 
					
						
							|  |  |  |     url = "https://github.com/bazelbuild/rules_webtesting/archive/v0.2.0.zip", | 
					
						
							|  |  |  |     strip_prefix = "rules_webtesting-0.2.0", | 
					
						
							|  |  |  |     sha256 = "cecc12f07e95740750a40d38e8b14b76fefa1551bef9332cb432d564d693723c", | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | http_archive( | 
					
						
							| 
									
										
										
										
											2017-08-21 08:23:47 -07:00
										 |  |  |     name = "build_bazel_rules_typescript", | 
					
						
							| 
									
										
										
										
											2018-05-30 18:15:38 -07:00
										 |  |  |     url = "https://github.com/bazelbuild/rules_typescript/archive/0.15.0.zip", | 
					
						
							|  |  |  |     strip_prefix = "rules_typescript-0.15.0", | 
					
						
							|  |  |  |     sha256 = "1aa75917330b820cb239b3c10a936a10f0a46fe215063d4492dd76dc6e1616f4", | 
					
						
							| 
									
										
										
										
											2017-08-21 08:23:47 -07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-29 15:35:48 -07:00
										 |  |  | http_archive( | 
					
						
							|  |  |  |     name = "io_bazel_rules_go", | 
					
						
							|  |  |  |     url = "https://github.com/bazelbuild/rules_go/releases/download/0.11.0/rules_go-0.11.0.tar.gz", | 
					
						
							|  |  |  |     sha256 = "f70c35a8c779bb92f7521ecb5a1c6604e9c3edd431e50b6376d7497abc8ad3c1", | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | http_archive( | 
					
						
							|  |  |  |     name = "io_bazel_rules_sass", | 
					
						
							| 
									
										
										
										
											2018-06-04 10:45:27 -07:00
										 |  |  |     url = "https://github.com/bazelbuild/rules_sass/archive/0.1.0.zip", | 
					
						
							|  |  |  |     strip_prefix = "rules_sass-0.1.0", | 
					
						
							|  |  |  |     sha256 = "b243c4d64f054c174051785862ab079050d90b37a1cef7da93821c6981cb9ad4", | 
					
						
							| 
									
										
										
										
											2018-05-29 15:35:48 -07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Load and install our dependencies downloaded above. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | load("@build_bazel_rules_nodejs//:defs.bzl", "check_bazel_version", "node_repositories") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-14 07:37:06 -07:00
										 |  |  | check_bazel_version("0.14.0") | 
					
						
							| 
									
										
										
										
											2018-05-29 15:35:48 -07:00
										 |  |  | node_repositories(package_json = ["//:package.json"]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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 14:49:08 -08:00
										 |  |  | load("@build_bazel_rules_typescript//:defs.bzl", "ts_setup_workspace") | 
					
						
							| 
									
										
										
										
											2017-12-06 06:56:49 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-22 09:36:47 -08:00
										 |  |  | ts_setup_workspace() | 
					
						
							| 
									
										
										
										
											2017-12-06 06:56:49 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-04 10:45:27 -07:00
										 |  |  | load("@io_bazel_rules_sass//sass:sass_repositories.bzl", "sass_repositories") | 
					
						
							| 
									
										
										
										
											2018-05-29 15:35:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | sass_repositories() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Point Bazel to WORKSPACEs that live in subdirectories | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-21 08:23:47 -07:00
										 |  |  | local_repository( | 
					
						
							|  |  |  |     name = "angular", | 
					
						
							| 
									
										
										
										
											2017-08-22 16:56:29 -07:00
										 |  |  |     path = "node_modules/@angular/bazel", | 
					
						
							| 
									
										
										
										
											2017-08-21 08:23:47 -07:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2017-09-26 09:44:47 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-06 06:56:49 -08:00
										 |  |  | local_repository( | 
					
						
							|  |  |  |     name = "rxjs", | 
					
						
							|  |  |  |     path = "node_modules/rxjs/src", | 
					
						
							|  |  |  | ) |