This is being done as a pre-factor for running integration tests with bazel on RBE. PR Close #35432
		
			
				
	
	
		
			35 lines
		
	
	
		
			781 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			781 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| package(default_visibility = ["//visibility:public"])
 | |
| 
 | |
| load("@npm_bazel_typescript//:index.bzl", "ts_config")
 | |
| 
 | |
| exports_files([
 | |
|     "tsconfig.json",
 | |
|     "jasmine-seed-generator.js",
 | |
| ])
 | |
| 
 | |
| ts_config(
 | |
|     name = "tsconfig-test",
 | |
|     src = "tsconfig-test.json",
 | |
|     deps = ["tsconfig.json"],
 | |
| )
 | |
| 
 | |
| platform(
 | |
|     name = "rbe_ubuntu1604-angular",
 | |
|     parents = ["@rbe_ubuntu1604_angular//config:platform"],
 | |
|     remote_execution_properties = """
 | |
|         {PARENT_REMOTE_EXECUTION_PROPERTIES}
 | |
|         properties: {
 | |
|             name: "dockerAddCapabilities"
 | |
|             value: "SYS_ADMIN"
 | |
|         }
 | |
|         properties: {
 | |
|             name: "dockerNetwork"
 | |
|             value: "standard"
 | |
|         }
 | |
|         properties: {
 | |
|             name: "Pool"
 | |
|             value: "default"
 | |
|         }
 | |
|         """,
 | |
| )
 |