Sets up circular dependency tests for all entry-points in the project (except for the ones part of a deprecated package). PR Close #34774
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
load("//tools:defaults.bzl", "jasmine_node_test", "karma_web_test_suite", "ts_library")
 | 
						|
load("//tools/circular_dependency_test:index.bzl", "circular_dependency_test")
 | 
						|
 | 
						|
circular_dependency_test(
 | 
						|
    name = "circular_deps_test",
 | 
						|
    entry_point = "angular/packages/animations/browser/index.js",
 | 
						|
    deps = ["//packages/animations/browser"],
 | 
						|
)
 | 
						|
 | 
						|
circular_dependency_test(
 | 
						|
    name = "testing_circular_deps_test",
 | 
						|
    entry_point = "angular/packages/animations/browser/testing/index.js",
 | 
						|
    deps = ["//packages/animations/browser/testing"],
 | 
						|
)
 | 
						|
 | 
						|
ts_library(
 | 
						|
    name = "test_lib",
 | 
						|
    testonly = True,
 | 
						|
    srcs = glob(["**/*.ts"]),
 | 
						|
    deps = [
 | 
						|
        "//packages:types",
 | 
						|
        "//packages/animations",
 | 
						|
        "//packages/animations/browser",
 | 
						|
        "//packages/animations/browser/testing",
 | 
						|
        "//packages/core",
 | 
						|
        "//packages/core/testing",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
jasmine_node_test(
 | 
						|
    name = "test",
 | 
						|
    bootstrap = ["//tools/testing:node_es5"],
 | 
						|
    deps = [
 | 
						|
        ":test_lib",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
karma_web_test_suite(
 | 
						|
    name = "test_web",
 | 
						|
    deps = [
 | 
						|
        ":test_lib",
 | 
						|
    ],
 | 
						|
)
 |