This commit renames the original `compliance` test directory to `compliance_old`. Eventually this directory will be deleted once all the tests have been migrated to the new test case based compliance tests. PR Close #39617
		
			
				
	
	
		
			20 lines
		
	
	
		
			528 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			528 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("//tools:defaults.bzl", "ts_library")
 | |
| 
 | |
| ts_library(
 | |
|     name = "mock_compile",
 | |
|     testonly = True,
 | |
|     srcs = ["index.ts"],
 | |
|     visibility = [
 | |
|         "//packages/compiler-cli/test/compliance_old:__subpackages__",
 | |
|     ],
 | |
|     deps = [
 | |
|         "//packages:types",
 | |
|         "//packages/compiler",
 | |
|         "//packages/compiler-cli",
 | |
|         "//packages/compiler-cli/src/ngtsc/core:api",
 | |
|         "//packages/compiler-cli/src/ngtsc/file_system",
 | |
|         "//packages/compiler/test:test_utils",
 | |
|         "@npm//typescript",
 | |
|     ],
 | |
| )
 |