|  | package(default_visibility = ["//visibility:public"]) | 
|  |  | 
|  | # Files which shouldn't be publicly visible and dependencies of all objc_* or ios_* rules shouldn't be in this package. | 
|  | exports_files(glob(["**"])) | 
|  |  | 
|  | filegroup( | 
|  | name = "srcs", | 
|  | srcs = glob(["**"]), | 
|  | ) | 
|  |  | 
|  | sh_binary( | 
|  | name = "xcrunwrapper", | 
|  | srcs = [":xcrunwrapper.sh"], | 
|  | ) | 
|  |  | 
|  | filegroup( | 
|  | name = "gcov", | 
|  | srcs = [":gcov_stub"], | 
|  | ) | 
|  |  | 
|  | filegroup( | 
|  | name = "mcov", | 
|  | srcs = [":mcov_stub"], | 
|  | ) | 
|  |  | 
|  | xcode_config( | 
|  | name = "host_xcodes", | 
|  | ) | 
|  |  | 
|  | py_binary( | 
|  | name = "j2objc_dead_code_pruner_binary", | 
|  | srcs = ["j2objc_dead_code_pruner_binary.py"], | 
|  | ) | 
|  |  | 
|  | objc_library( | 
|  | name = "dummy_lib", | 
|  | srcs = [ | 
|  | "objc_dummy.mm", | 
|  | ], | 
|  | ) |