This change brings InitGoogleTest semantic in accordance with the official documentation: only GoogleTest flags are removed from argc/argv. The rest of the flags remains in place. We do nothing special for flags with unrecognized gunit_/gtest_ prefix and we do not report them. PiperOrigin-RevId: 527257221 Change-Id: Ibb29a1bda1a44251a4ee579c0fb5bbdfd9965c21
		
			
				
	
	
		
			23 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
"""Load dependencies needed to use the googletest library as a 3rd-party consumer."""
 | 
						|
 | 
						|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
 | 
						|
 | 
						|
def googletest_deps():
 | 
						|
    """Loads common dependencies needed to use the googletest library."""
 | 
						|
 | 
						|
    if not native.existing_rule("com_googlesource_code_re2"):
 | 
						|
        http_archive(
 | 
						|
            name = "com_googlesource_code_re2",  # 2022-12-21T14:29:10Z
 | 
						|
            sha256 = "b9ce3a51beebb38534d11d40f8928d40509b9e18a735f6a4a97ad3d014c87cb5",
 | 
						|
            strip_prefix = "re2-d0b1f8f2ecc2ea74956c7608b6f915175314ff0e",
 | 
						|
            urls = ["https://github.com/google/re2/archive/d0b1f8f2ecc2ea74956c7608b6f915175314ff0e.zip"],
 | 
						|
        )
 | 
						|
 | 
						|
    if not native.existing_rule("com_google_absl"):
 | 
						|
        http_archive(
 | 
						|
            name = "com_google_absl",  # 2023-04-06T14:42:25Z
 | 
						|
            sha256 = "a50452f02402262f9a61a8eedda60f76dda6b9538d36b34b55bce9f74a4d5ef8",
 | 
						|
            strip_prefix = "abseil-cpp-e73b9139ee9b853a4bd7812531442c138da09084",
 | 
						|
            urls = ["https://github.com/abseil/abseil-cpp/archive/e73b9139ee9b853a4bd7812531442c138da09084.zip"],
 | 
						|
        )
 |