Created
February 8, 2021 16:29
-
-
Save tinder-maxwellelliott/7abb221fc267361237a42147be1b0ca8 to your computer and use it in GitHub Desktop.
Generated Bazel BUILD file for GoogleToolboxForMac via PodToBuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
load( | |
"//Vendor/rules_pods/BazelExtensions:extensions.bzl", | |
"acknowledged_target", | |
"gen_module_map", | |
"gen_includes", | |
"headermap", | |
"umbrella_header" | |
) | |
# Add a config setting release for compilation mode | |
# Assume that people are using `opt` for release mode | |
# see the bazel user manual for more information | |
# https://docs.bazel.build/versions/master/be/general.html#config_setting | |
config_setting( | |
name = "release", | |
values = { | |
"compilation_mode": "opt" | |
} | |
) | |
config_setting( | |
name = "osxCase", | |
values = { | |
"apple_platform_type": "macos" | |
} | |
) | |
config_setting( | |
name = "tvosCase", | |
values = { | |
"apple_platform_type": "tvos" | |
} | |
) | |
config_setting( | |
name = "watchosCase", | |
values = { | |
"apple_platform_type": "watchos" | |
} | |
) | |
filegroup( | |
name = "GoogleToolboxForMac_package_hdrs", | |
srcs = [ | |
"GoogleToolboxForMac_direct_hdrs", | |
"Defines_direct_hdrs", | |
"Core_direct_hdrs", | |
"DebugUtils_direct_hdrs", | |
"GeometryUtils_direct_hdrs", | |
"KVO_direct_hdrs", | |
"Logger_direct_hdrs", | |
"Regex_direct_hdrs", | |
"StackTrace_direct_hdrs", | |
"StringEncoding_direct_hdrs", | |
"SystemVersion_direct_hdrs", | |
"URLBuilder_direct_hdrs", | |
"NSData_zlib_direct_hdrs", | |
"NSDictionary_URLArguments_direct_hdrs", | |
"NSFileHandle_UniqueName_direct_hdrs", | |
"NSScanner_JSON_direct_hdrs", | |
"NSString_HTML_direct_hdrs", | |
"NSString_URLArguments_direct_hdrs", | |
"NSString_XML_direct_hdrs", | |
"NSThread_Blocks_direct_hdrs", | |
"iPhone_direct_hdrs", | |
"RoundedRectPath_direct_hdrs", | |
"UIFont_LineHeight_direct_hdrs", | |
"UnitTesting_cxx_direct_hdrs", | |
"UnitTesting_direct_hdrs", | |
"UnitTestingAppLib_direct_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "GoogleToolboxForMac_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "GoogleToolboxForMac_public_hdrs", | |
srcs = [ | |
":Core_public_hdrs", | |
":Defines_public_hdrs", | |
":GeometryUtils_public_hdrs", | |
":KVO_public_hdrs", | |
":Logger_public_hdrs", | |
":NSData_zlib_public_hdrs", | |
":NSDictionary_URLArguments_public_hdrs", | |
":NSFileHandle_UniqueName_public_hdrs", | |
":NSScanner_JSON_public_hdrs", | |
":NSString_HTML_public_hdrs", | |
":NSString_URLArguments_public_hdrs", | |
":NSString_XML_public_hdrs", | |
":NSThread_Blocks_public_hdrs", | |
":Regex_public_hdrs", | |
":StringEncoding_public_hdrs", | |
":SystemVersion_public_hdrs", | |
":URLBuilder_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "GoogleToolboxForMac_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*" | |
] | |
) + [ | |
":Core_hdrs", | |
":Defines_hdrs", | |
":GeometryUtils_hdrs", | |
":KVO_hdrs", | |
":Logger_hdrs", | |
":NSData_zlib_hdrs", | |
":NSDictionary_URLArguments_hdrs", | |
":NSFileHandle_UniqueName_hdrs", | |
":NSScanner_JSON_hdrs", | |
":NSString_HTML_hdrs", | |
":NSString_URLArguments_hdrs", | |
":NSString_XML_hdrs", | |
":NSThread_Blocks_hdrs", | |
":Regex_hdrs", | |
":StringEncoding_hdrs", | |
":SystemVersion_hdrs", | |
":URLBuilder_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "GoogleToolboxForMac_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":GoogleToolboxForMac_hdrs" | |
], | |
deps = [ | |
":Core_hmap", | |
":Defines_hmap", | |
":GeometryUtils_hmap", | |
":KVO_hmap", | |
":Logger_hmap", | |
":NSData_zlib_hmap", | |
":NSDictionary_URLArguments_hmap", | |
":NSFileHandle_UniqueName_hmap", | |
":NSScanner_JSON_hmap", | |
":NSString_HTML_hmap", | |
":NSString_URLArguments_hmap", | |
":NSString_XML_hmap", | |
":NSThread_Blocks_hmap", | |
":Regex_hmap", | |
":StringEncoding_hmap", | |
":SystemVersion_hmap", | |
":URLBuilder_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "GoogleToolboxForMac_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "GoogleToolboxForMac", | |
enable_modules = 1, | |
hdrs = [ | |
":GoogleToolboxForMac_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Core", | |
":Defines", | |
":GeometryUtils", | |
":KVO", | |
":Logger", | |
":NSData_zlib", | |
":NSDictionary_URLArguments", | |
":NSFileHandle_UniqueName", | |
":NSScanner_JSON", | |
":NSString_HTML", | |
":NSString_URLArguments", | |
":NSString_XML", | |
":NSThread_Blocks", | |
":Regex", | |
":StringEncoding", | |
":SystemVersion", | |
":URLBuilder", | |
":GoogleToolboxForMac_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "GoogleToolboxForMac_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "Defines_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"GTMDefines.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "Defines_public_hdrs", | |
srcs = glob( | |
[ | |
"GTMDefines.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "Defines_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"GTMDefines.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "Defines_union_hdrs", | |
srcs = [ | |
"Defines_hdrs", | |
"GoogleToolboxForMac_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "Defines_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":Defines_union_hdrs" | |
], | |
deps = [], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "Defines_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "Defines", | |
enable_modules = 1, | |
hdrs = [ | |
":Defines_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "Defines_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "Core_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"DebugUtils/GTMTypeCasting.h", | |
"Foundation/GTMLocalizedString.h", | |
"Foundation/GTMLogger.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "Core_public_hdrs", | |
srcs = glob( | |
[ | |
"DebugUtils/GTMTypeCasting.h", | |
"Foundation/GTMLocalizedString.h", | |
"Foundation/GTMLogger.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "Core_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"DebugUtils/GTMTypeCasting.h", | |
"Foundation/GTMLocalizedString.h", | |
"Foundation/GTMLogger.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "Core_union_hdrs", | |
srcs = [ | |
"Core_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "Core_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":Core_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "Core_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "Core", | |
enable_modules = 1, | |
hdrs = [ | |
":Core_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":Core_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "Core_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "DebugUtils_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"DebugUtils/GTMDebugSelectorValidation.h", | |
"DebugUtils/GTMDebugThreadValidation.h", | |
"DebugUtils/GTMMethodCheck.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "DebugUtils_public_hdrs", | |
srcs = glob( | |
[ | |
"DebugUtils/GTMDebugSelectorValidation.h", | |
"DebugUtils/GTMDebugThreadValidation.h", | |
"DebugUtils/GTMMethodCheck.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "DebugUtils_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"DebugUtils/GTMDebugSelectorValidation.h", | |
"DebugUtils/GTMDebugThreadValidation.h", | |
"DebugUtils/GTMMethodCheck.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "DebugUtils_union_hdrs", | |
srcs = [ | |
"DebugUtils_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "DebugUtils_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":DebugUtils_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "DebugUtils_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "DebugUtils", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"DebugUtils/GTMDebugSelectorValidation.m" | |
], | |
exclude = [ | |
"Foundation/GTMNSObject+KeyValueObserving.m", | |
"Foundation/GTMNSDictionary+URLArguments.m" | |
] | |
), | |
hdrs = [ | |
":DebugUtils_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":DebugUtils_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "DebugUtils_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "GeometryUtils_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMGeometryUtils.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "GeometryUtils_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMGeometryUtils.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "GeometryUtils_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMGeometryUtils.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "GeometryUtils_union_hdrs", | |
srcs = [ | |
"GeometryUtils_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "GeometryUtils_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":GeometryUtils_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "GeometryUtils_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "GeometryUtils", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMGeometryUtils.m" | |
] | |
), | |
hdrs = [ | |
":GeometryUtils_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
sdk_frameworks = [ | |
"CoreGraphics" | |
], | |
deps = [ | |
":Defines", | |
":GeometryUtils_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "GeometryUtils_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "KVO_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSObject+KeyValueObserving.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "KVO_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMNSObject+KeyValueObserving.h" | |
] | |
) + [ | |
":Core_public_hdrs", | |
":DebugUtils_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "KVO_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSObject+KeyValueObserving.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "KVO_union_hdrs", | |
srcs = [ | |
"KVO_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Core_hdrs", | |
":DebugUtils_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "KVO_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":KVO_union_hdrs" | |
], | |
deps = [ | |
":Core_hmap", | |
":DebugUtils_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "KVO_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "KVO", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMNSObject+KeyValueObserving.m" | |
] | |
), | |
hdrs = [ | |
":KVO_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Core", | |
":DebugUtils", | |
":KVO_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "KVO_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "Logger_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMLogger.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "Logger_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMLogger.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "Logger_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMLogger.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "Logger_union_hdrs", | |
srcs = [ | |
"Logger_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "Logger_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":Logger_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "Logger_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "Logger", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMLogger.m" | |
] | |
), | |
hdrs = [ | |
":Logger_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":Logger_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "Logger_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "Regex_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMRegex.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "Regex_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMRegex.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "Regex_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMRegex.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "Regex_union_hdrs", | |
srcs = [ | |
"Regex_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "Regex_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":Regex_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "Regex_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "Regex", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMRegex.m" | |
], | |
exclude = [ | |
"CoreGraphics/**/*.cc", | |
"CoreGraphics/**/*.cpp", | |
"CoreGraphics/**/*.cxx", | |
"CoreGraphics/**/*.mm", | |
"QuartzCore/**/*.cc", | |
"QuartzCore/**/*.cpp", | |
"QuartzCore/**/*.cxx", | |
"QuartzCore/**/*.mm", | |
"CoreGraphics/**/*.S", | |
"CoreGraphics/**/*.c", | |
"CoreGraphics/**/*.m", | |
"CoreGraphics/**/*.s", | |
"QuartzCore/**/*.S", | |
"QuartzCore/**/*.c", | |
"QuartzCore/**/*.m", | |
"QuartzCore/**/*.s", | |
"UnitTesting/GTMFoundationUnitTestingUtilities.m", | |
"UnitTesting/GTMSenTestCase.m" | |
] | |
), | |
hdrs = [ | |
":Regex_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":Regex_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "Regex_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "StackTrace_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMStackTrace.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "StackTrace_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMStackTrace.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "StackTrace_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMStackTrace.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "StackTrace_union_hdrs", | |
srcs = [ | |
"StackTrace_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "StackTrace_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":StackTrace_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "StackTrace_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "StackTrace", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMStackTrace.m" | |
] | |
), | |
hdrs = [ | |
":StackTrace_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":StackTrace_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "StackTrace_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "StringEncoding_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMStringEncoding.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "StringEncoding_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMStringEncoding.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "StringEncoding_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMStringEncoding.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "StringEncoding_union_hdrs", | |
srcs = [ | |
"StringEncoding_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "StringEncoding_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":StringEncoding_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "StringEncoding_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "StringEncoding", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMStringEncoding.m" | |
] | |
), | |
hdrs = [ | |
":StringEncoding_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":StringEncoding_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "StringEncoding_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "SystemVersion_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMSystemVersion.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "SystemVersion_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMSystemVersion.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "SystemVersion_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMSystemVersion.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "SystemVersion_union_hdrs", | |
srcs = [ | |
"SystemVersion_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "SystemVersion_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":SystemVersion_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "SystemVersion_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "SystemVersion", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMSystemVersion.m" | |
], | |
exclude = [ | |
"CoreGraphics/**/*.cc", | |
"CoreGraphics/**/*.cpp", | |
"CoreGraphics/**/*.cxx", | |
"CoreGraphics/**/*.mm", | |
"QuartzCore/**/*.cc", | |
"QuartzCore/**/*.cpp", | |
"QuartzCore/**/*.cxx", | |
"QuartzCore/**/*.mm", | |
"CoreGraphics/**/*.S", | |
"CoreGraphics/**/*.c", | |
"CoreGraphics/**/*.m", | |
"CoreGraphics/**/*.s", | |
"QuartzCore/**/*.S", | |
"QuartzCore/**/*.c", | |
"QuartzCore/**/*.m", | |
"QuartzCore/**/*.s", | |
"UnitTesting/GTMFoundationUnitTestingUtilities.m", | |
"UnitTesting/GTMSenTestCase.m" | |
] | |
), | |
hdrs = [ | |
":SystemVersion_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":SystemVersion_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "SystemVersion_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "URLBuilder_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMURLBuilder.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "URLBuilder_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMURLBuilder.h" | |
] | |
) + [ | |
":Core_public_hdrs", | |
":Defines_public_hdrs", | |
":NSDictionary_URLArguments_public_hdrs", | |
":NSString_URLArguments_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "URLBuilder_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMURLBuilder.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "URLBuilder_union_hdrs", | |
srcs = [ | |
"URLBuilder_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Core_hdrs", | |
":Defines_hdrs", | |
":NSDictionary_URLArguments_hdrs", | |
":NSString_URLArguments_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "URLBuilder_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":URLBuilder_union_hdrs" | |
], | |
deps = [ | |
":Core_hmap", | |
":Defines_hmap", | |
":NSDictionary_URLArguments_hmap", | |
":NSString_URLArguments_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "URLBuilder_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "URLBuilder", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMURLBuilder.m" | |
] | |
), | |
hdrs = [ | |
":URLBuilder_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Core", | |
":Defines", | |
":NSDictionary_URLArguments", | |
":NSString_URLArguments", | |
":URLBuilder_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "URLBuilder_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "NSData_zlib_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSData+zlib.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSData_zlib_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMNSData+zlib.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSData_zlib_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSData+zlib.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSData_zlib_union_hdrs", | |
srcs = [ | |
"NSData_zlib_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "NSData_zlib_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":NSData_zlib_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "NSData_zlib_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "NSData_zlib", | |
enable_modules = 1, | |
srcs = glob( | |
[ | |
"Foundation/GTMNSData+zlib.m" | |
] | |
), | |
hdrs = [ | |
":NSData_zlib_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
sdk_dylibs = [ | |
"z" | |
], | |
deps = [ | |
":Defines", | |
":NSData_zlib_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "NSData_zlib_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "NSDictionary_URLArguments_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSDictionary+URLArguments.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSDictionary_URLArguments_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMNSDictionary+URLArguments.h" | |
] | |
) + [ | |
":DebugUtils_public_hdrs", | |
":Defines_public_hdrs", | |
":NSString_URLArguments_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSDictionary_URLArguments_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSDictionary+URLArguments.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSDictionary_URLArguments_union_hdrs", | |
srcs = [ | |
"NSDictionary_URLArguments_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":DebugUtils_hdrs", | |
":Defines_hdrs", | |
":NSString_URLArguments_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "NSDictionary_URLArguments_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":NSDictionary_URLArguments_union_hdrs" | |
], | |
deps = [ | |
":DebugUtils_hmap", | |
":Defines_hmap", | |
":NSString_URLArguments_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "NSDictionary_URLArguments_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "NSDictionary_URLArguments", | |
enable_modules = 1, | |
srcs = glob( | |
[ | |
"Foundation/GTMNSDictionary+URLArguments.m" | |
], | |
exclude = glob( | |
[ | |
"Foundation/GTMNSDictionary+URLArguments.m" | |
], | |
exclude = glob( | |
[ | |
"Foundation/GTMNSDictionary+URLArguments.m" | |
], | |
exclude = [ | |
"Foundation/GTMURLBuilder.m" | |
] | |
) | |
) | |
), | |
non_arc_srcs = glob( | |
glob( | |
[ | |
"Foundation/GTMNSDictionary+URLArguments.m" | |
], | |
exclude = [ | |
"Foundation/GTMURLBuilder.m" | |
] | |
), | |
exclude = glob( | |
[ | |
"Foundation/GTMNSDictionary+URLArguments.m" | |
], | |
exclude = glob( | |
[ | |
"Foundation/GTMNSDictionary+URLArguments.m" | |
], | |
exclude = glob( | |
[ | |
"Foundation/GTMNSDictionary+URLArguments.m" | |
], | |
exclude = [ | |
"Foundation/GTMURLBuilder.m" | |
] | |
) | |
) | |
) | |
), | |
hdrs = [ | |
":NSDictionary_URLArguments_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":DebugUtils", | |
":Defines", | |
":NSString_URLArguments", | |
":NSDictionary_URLArguments_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "NSDictionary_URLArguments_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "NSFileHandle_UniqueName_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSFileHandle+UniqueName.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSFileHandle_UniqueName_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMNSFileHandle+UniqueName.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSFileHandle_UniqueName_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSFileHandle+UniqueName.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSFileHandle_UniqueName_union_hdrs", | |
srcs = [ | |
"NSFileHandle_UniqueName_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "NSFileHandle_UniqueName_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":NSFileHandle_UniqueName_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "NSFileHandle_UniqueName_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "NSFileHandle_UniqueName", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMNSFileHandle+UniqueName.m" | |
] | |
), | |
hdrs = [ | |
":NSFileHandle_UniqueName_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":NSFileHandle_UniqueName_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "NSFileHandle_UniqueName_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "NSScanner_JSON_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSScanner+JSON.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSScanner_JSON_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMNSScanner+JSON.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSScanner_JSON_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSScanner+JSON.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSScanner_JSON_union_hdrs", | |
srcs = [ | |
"NSScanner_JSON_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "NSScanner_JSON_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":NSScanner_JSON_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "NSScanner_JSON_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "NSScanner_JSON", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMNSScanner+JSON.m" | |
] | |
), | |
hdrs = [ | |
":NSScanner_JSON_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":NSScanner_JSON_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "NSScanner_JSON_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "NSString_HTML_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSString+HTML.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSString_HTML_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMNSString+HTML.h" | |
] | |
) + [ | |
":Core_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSString_HTML_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSString+HTML.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSString_HTML_union_hdrs", | |
srcs = [ | |
"NSString_HTML_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Core_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "NSString_HTML_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":NSString_HTML_union_hdrs" | |
], | |
deps = [ | |
":Core_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "NSString_HTML_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "NSString_HTML", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMNSString+HTML.m" | |
] | |
), | |
hdrs = [ | |
":NSString_HTML_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Core", | |
":NSString_HTML_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "NSString_HTML_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "NSString_URLArguments_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSString+URLArguments.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSString_URLArguments_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMNSString+URLArguments.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSString_URLArguments_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSString+URLArguments.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSString_URLArguments_union_hdrs", | |
srcs = [ | |
"NSString_URLArguments_hdrs", | |
"GoogleToolboxForMac_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "NSString_URLArguments_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":NSString_URLArguments_union_hdrs" | |
], | |
deps = [], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "NSString_URLArguments_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "NSString_URLArguments", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMNSString+URLArguments.m" | |
], | |
exclude = [ | |
"Foundation/GTMURLBuilder.m", | |
"Foundation/GTMNSDictionary+URLArguments.m" | |
] | |
), | |
hdrs = [ | |
":NSString_URLArguments_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":NSString_URLArguments_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "NSString_URLArguments_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "NSString_XML_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSString+XML.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSString_XML_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMNSString+XML.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSString_XML_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSString+XML.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSString_XML_union_hdrs", | |
srcs = [ | |
"NSString_XML_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "NSString_XML_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":NSString_XML_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "NSString_XML_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "NSString_XML", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMNSString+XML.m" | |
] | |
), | |
hdrs = [ | |
":NSString_XML_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":NSString_XML_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "NSString_XML_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "NSThread_Blocks_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSThread+Blocks.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSThread_Blocks_public_hdrs", | |
srcs = glob( | |
[ | |
"Foundation/GTMNSThread+Blocks.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSThread_Blocks_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"Foundation/GTMNSThread+Blocks.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "NSThread_Blocks_union_hdrs", | |
srcs = [ | |
"NSThread_Blocks_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "NSThread_Blocks_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":NSThread_Blocks_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "NSThread_Blocks_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "NSThread_Blocks", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"Foundation/GTMNSThread+Blocks.m" | |
] | |
), | |
hdrs = [ | |
":NSThread_Blocks_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":NSThread_Blocks_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "NSThread_Blocks_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "iPhone_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"iPhone/GTMFadeTruncatingLabel.h", | |
"iPhone/GTMUIImage+Resize.h", | |
"iPhone/GTMUILocalizer.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "iPhone_public_hdrs", | |
srcs = glob( | |
[ | |
"iPhone/GTMFadeTruncatingLabel.h", | |
"iPhone/GTMUIImage+Resize.h", | |
"iPhone/GTMUILocalizer.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "iPhone_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"iPhone/GTMFadeTruncatingLabel.h", | |
"iPhone/GTMUIImage+Resize.h", | |
"iPhone/GTMUILocalizer.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "iPhone_union_hdrs", | |
srcs = [ | |
"iPhone_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "iPhone_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":iPhone_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "iPhone_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "iPhone", | |
enable_modules = 1, | |
srcs = glob( | |
[ | |
"iPhone/GTMUIImage+Resize.m" | |
], | |
exclude = glob( | |
[ | |
"iPhone/GTMUIImage+Resize.m" | |
], | |
exclude = [ | |
"iPhone/GTMFadeTruncatingLabel.m", | |
"iPhone/GTMUIImage+Resize.m", | |
"iPhone/GTMUILocalizer.m" | |
] | |
) | |
), | |
non_arc_srcs = glob( | |
[ | |
"iPhone/GTMFadeTruncatingLabel.m", | |
"iPhone/GTMUIImage+Resize.m", | |
"iPhone/GTMUILocalizer.m" | |
], | |
exclude = glob( | |
[ | |
"iPhone/GTMUIImage+Resize.m" | |
], | |
exclude = glob( | |
[ | |
"iPhone/GTMUIImage+Resize.m" | |
], | |
exclude = [ | |
"iPhone/GTMFadeTruncatingLabel.m", | |
"iPhone/GTMUIImage+Resize.m", | |
"iPhone/GTMUILocalizer.m" | |
] | |
) | |
) | |
), | |
hdrs = [ | |
":iPhone_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":iPhone_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "iPhone_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "RoundedRectPath_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"iPhone/GTMRoundedRectPath.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "RoundedRectPath_public_hdrs", | |
srcs = glob( | |
[ | |
"iPhone/GTMRoundedRectPath.h" | |
] | |
) + [ | |
":Defines_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "RoundedRectPath_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"iPhone/GTMRoundedRectPath.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "RoundedRectPath_union_hdrs", | |
srcs = [ | |
"RoundedRectPath_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "RoundedRectPath_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":RoundedRectPath_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "RoundedRectPath_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "RoundedRectPath", | |
enable_modules = 1, | |
srcs = glob( | |
[ | |
"iPhone/GTMRoundedRectPath.m" | |
] | |
), | |
hdrs = [ | |
":RoundedRectPath_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
sdk_frameworks = [ | |
"CoreGraphics" | |
], | |
deps = [ | |
":Defines", | |
":RoundedRectPath_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "RoundedRectPath_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "UIFont_LineHeight_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"iPhone/GTMUIFont+LineHeight.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "UIFont_LineHeight_public_hdrs", | |
srcs = glob( | |
[ | |
"iPhone/GTMUIFont+LineHeight.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "UIFont_LineHeight_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"iPhone/GTMUIFont+LineHeight.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "UIFont_LineHeight_union_hdrs", | |
srcs = [ | |
"UIFont_LineHeight_hdrs", | |
"GoogleToolboxForMac_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "UIFont_LineHeight_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":UIFont_LineHeight_union_hdrs" | |
], | |
deps = [], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "UIFont_LineHeight_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "UIFont_LineHeight", | |
enable_modules = 1, | |
srcs = glob( | |
[ | |
"iPhone/GTMUIFont+LineHeight.m" | |
] | |
), | |
hdrs = [ | |
":UIFont_LineHeight_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":UIFont_LineHeight_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "UIFont_LineHeight_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "UnitTesting_cxx_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"CoreGraphics/**/*.h", | |
"CoreGraphics/**/*.hpp", | |
"CoreGraphics/**/*.hxx", | |
"QuartzCore/**/*.h", | |
"QuartzCore/**/*.hpp", | |
"QuartzCore/**/*.hxx", | |
"UnitTesting/GTMFoundationUnitTestingUtilities.h", | |
"UnitTesting/GTMSenTestCase.h", | |
"UnitTesting/GTMTestTimer.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "UnitTesting_cxx_public_hdrs", | |
srcs = glob( | |
[ | |
"CoreGraphics/**/*.h", | |
"CoreGraphics/**/*.hpp", | |
"CoreGraphics/**/*.hxx", | |
"QuartzCore/**/*.h", | |
"QuartzCore/**/*.hpp", | |
"QuartzCore/**/*.hxx", | |
"UnitTesting/GTMFoundationUnitTestingUtilities.h", | |
"UnitTesting/GTMSenTestCase.h", | |
"UnitTesting/GTMTestTimer.h" | |
] | |
) + [ | |
":Defines_public_hdrs", | |
":Regex_public_hdrs", | |
":SystemVersion_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "UnitTesting_cxx_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"CoreGraphics/**/*.h", | |
"CoreGraphics/**/*.hpp", | |
"CoreGraphics/**/*.hxx", | |
"QuartzCore/**/*.h", | |
"QuartzCore/**/*.hpp", | |
"QuartzCore/**/*.hxx", | |
"UnitTesting/GTMFoundationUnitTestingUtilities.h", | |
"UnitTesting/GTMSenTestCase.h", | |
"UnitTesting/GTMTestTimer.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "UnitTesting_cxx_union_hdrs", | |
srcs = [ | |
"UnitTesting_cxx_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs", | |
":Regex_hdrs", | |
":SystemVersion_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "UnitTesting_cxx_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":UnitTesting_cxx_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap", | |
":Regex_hmap", | |
":SystemVersion_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "UnitTesting_cxx_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "UnitTesting_cxx", | |
enable_modules = 1, | |
srcs = glob( | |
[ | |
"CoreGraphics/**/*.cc", | |
"CoreGraphics/**/*.cpp", | |
"CoreGraphics/**/*.cxx", | |
"QuartzCore/**/*.cc", | |
"QuartzCore/**/*.cpp", | |
"QuartzCore/**/*.cxx" | |
], | |
exclude = [ | |
"CoreGraphics/**/*.S", | |
"CoreGraphics/**/*.c", | |
"CoreGraphics/**/*.m", | |
"CoreGraphics/**/*.s", | |
"QuartzCore/**/*.S", | |
"QuartzCore/**/*.c", | |
"QuartzCore/**/*.m", | |
"QuartzCore/**/*.s", | |
"UnitTesting/GTMFoundationUnitTestingUtilities.m", | |
"UnitTesting/GTMSenTestCase.m", | |
"UnitTesting/GTMIPhoneUnitTestDelegate.m" | |
] | |
), | |
non_arc_srcs = glob( | |
glob( | |
[ | |
"CoreGraphics/**/*.mm", | |
"QuartzCore/**/*.mm" | |
], | |
exclude = [ | |
"CoreGraphics/**/*.S", | |
"CoreGraphics/**/*.c", | |
"CoreGraphics/**/*.m", | |
"CoreGraphics/**/*.s", | |
"QuartzCore/**/*.S", | |
"QuartzCore/**/*.c", | |
"QuartzCore/**/*.m", | |
"QuartzCore/**/*.s", | |
"UnitTesting/GTMFoundationUnitTestingUtilities.m", | |
"UnitTesting/GTMSenTestCase.m", | |
"UnitTesting/GTMIPhoneUnitTestDelegate.m" | |
] | |
), | |
exclude = glob( | |
[ | |
"CoreGraphics/**/*.cc", | |
"CoreGraphics/**/*.cpp", | |
"CoreGraphics/**/*.cxx", | |
"QuartzCore/**/*.cc", | |
"QuartzCore/**/*.cpp", | |
"QuartzCore/**/*.cxx" | |
], | |
exclude = [ | |
"CoreGraphics/**/*.S", | |
"CoreGraphics/**/*.c", | |
"CoreGraphics/**/*.m", | |
"CoreGraphics/**/*.s", | |
"QuartzCore/**/*.S", | |
"QuartzCore/**/*.c", | |
"QuartzCore/**/*.m", | |
"QuartzCore/**/*.s", | |
"UnitTesting/GTMFoundationUnitTestingUtilities.m", | |
"UnitTesting/GTMSenTestCase.m", | |
"UnitTesting/GTMIPhoneUnitTestDelegate.m" | |
] | |
) | |
), | |
hdrs = [ | |
":UnitTesting_cxx_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
sdk_frameworks = [ | |
"CoreGraphics" | |
], | |
deps = [ | |
":Defines", | |
":Regex", | |
":SystemVersion", | |
":UnitTesting_cxx_includes" | |
], | |
copts = [ | |
"-std=c++14", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "UnitTesting_cxx_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "UnitTesting_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"CoreGraphics/**/*.h", | |
"CoreGraphics/**/*.hpp", | |
"CoreGraphics/**/*.hxx", | |
"QuartzCore/**/*.h", | |
"QuartzCore/**/*.hpp", | |
"QuartzCore/**/*.hxx", | |
"UnitTesting/GTMFoundationUnitTestingUtilities.h", | |
"UnitTesting/GTMSenTestCase.h", | |
"UnitTesting/GTMTestTimer.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "UnitTesting_public_hdrs", | |
srcs = glob( | |
[ | |
"CoreGraphics/**/*.h", | |
"CoreGraphics/**/*.hpp", | |
"CoreGraphics/**/*.hxx", | |
"QuartzCore/**/*.h", | |
"QuartzCore/**/*.hpp", | |
"QuartzCore/**/*.hxx", | |
"UnitTesting/GTMFoundationUnitTestingUtilities.h", | |
"UnitTesting/GTMSenTestCase.h", | |
"UnitTesting/GTMTestTimer.h" | |
] | |
) + [ | |
":Defines_public_hdrs", | |
":Regex_public_hdrs", | |
":SystemVersion_public_hdrs", | |
":UnitTesting_cxx_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "UnitTesting_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"CoreGraphics/**/*.h", | |
"CoreGraphics/**/*.hpp", | |
"CoreGraphics/**/*.hxx", | |
"QuartzCore/**/*.h", | |
"QuartzCore/**/*.hpp", | |
"QuartzCore/**/*.hxx", | |
"UnitTesting/GTMFoundationUnitTestingUtilities.h", | |
"UnitTesting/GTMSenTestCase.h", | |
"UnitTesting/GTMTestTimer.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "UnitTesting_union_hdrs", | |
srcs = [ | |
"UnitTesting_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs", | |
":Regex_hdrs", | |
":SystemVersion_hdrs", | |
":UnitTesting_cxx_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "UnitTesting_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":UnitTesting_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap", | |
":Regex_hmap", | |
":SystemVersion_hmap", | |
":UnitTesting_cxx_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "UnitTesting_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "UnitTesting", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"CoreGraphics/**/*.S", | |
"CoreGraphics/**/*.c", | |
"CoreGraphics/**/*.m", | |
"CoreGraphics/**/*.s", | |
"QuartzCore/**/*.S", | |
"QuartzCore/**/*.c", | |
"QuartzCore/**/*.m", | |
"QuartzCore/**/*.s", | |
"UnitTesting/GTMFoundationUnitTestingUtilities.m", | |
"UnitTesting/GTMSenTestCase.m" | |
], | |
exclude = [ | |
"UnitTesting/GTMIPhoneUnitTestDelegate.m" | |
] | |
), | |
hdrs = [ | |
":UnitTesting_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
sdk_frameworks = [ | |
"CoreGraphics" | |
], | |
deps = [ | |
":Defines", | |
":Regex", | |
":SystemVersion", | |
":UnitTesting_cxx", | |
":UnitTesting_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "UnitTesting_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) | |
filegroup( | |
name = "UnitTestingAppLib_direct_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"UnitTesting/GTMCodeCoverageApp.h", | |
"UnitTesting/GTMIPhoneUnitTestDelegate.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "UnitTestingAppLib_public_hdrs", | |
srcs = glob( | |
[ | |
"UnitTesting/GTMCodeCoverageApp.h", | |
"UnitTesting/GTMIPhoneUnitTestDelegate.h" | |
] | |
) + [ | |
":Defines_public_hdrs", | |
":UnitTesting_public_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "UnitTestingAppLib_hdrs", | |
srcs = glob( | |
[ | |
"pod_support/Headers/Public/**/*", | |
"UnitTesting/GTMCodeCoverageApp.h", | |
"UnitTesting/GTMIPhoneUnitTestDelegate.h" | |
] | |
), | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
filegroup( | |
name = "UnitTestingAppLib_union_hdrs", | |
srcs = [ | |
"UnitTestingAppLib_hdrs", | |
"GoogleToolboxForMac_hdrs", | |
":Defines_hdrs", | |
":UnitTesting_hdrs" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
headermap( | |
name = "UnitTestingAppLib_hmap", | |
namespace = "GoogleToolboxForMac", | |
hdrs = [ | |
"GoogleToolboxForMac_package_hdrs", | |
":UnitTestingAppLib_union_hdrs" | |
], | |
deps = [ | |
":Defines_hmap", | |
":UnitTesting_hmap" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
gen_includes( | |
name = "UnitTestingAppLib_includes", | |
include = [ | |
"Vendor/GoogleToolboxForMac/pod_support/Headers/Public/" | |
] | |
) | |
objc_library( | |
name = "UnitTestingAppLib", | |
enable_modules = 1, | |
non_arc_srcs = glob( | |
[ | |
"UnitTesting/GTMIPhoneUnitTestDelegate.m" | |
] | |
), | |
hdrs = [ | |
":UnitTestingAppLib_hdrs" | |
], | |
pch = "pod_support/Headers/Private/GoogleToolboxForMac-prefix.pch", | |
deps = [ | |
":Defines", | |
":UnitTesting", | |
":UnitTestingAppLib_includes" | |
], | |
copts = [ | |
"-fobjc-weak", | |
"-Wno-everything", | |
"-Wnon-modular-include-in-framework-module", | |
"-g", | |
"-stdlib=libc++", | |
"-DCOCOAPODS=1", | |
"-DOBJC_OLD_DISPATCH_PROTOTYPES=0", | |
"-fdiagnostics-show-note-include-stack", | |
"-fno-common", | |
"-fembed-bitcode-marker", | |
"-fmessage-length=0", | |
"-fpascal-strings", | |
"-fstrict-aliasing", | |
"-Wno-error=nonportable-include-path" | |
] + select( | |
{ | |
"//conditions:default": [ | |
"-DDEBUG=1", | |
"-DPOD_CONFIGURATION_DEBUG=1" | |
], | |
":release": [ | |
"-DPOD_CONFIGURATION_RELEASE=1", | |
"-DNS_BLOCK_ASSERTIONS=1" | |
] | |
} | |
) + [ | |
"-IVendor/GoogleToolboxForMac/pod_support/Headers/Public/GoogleToolboxForMac/" | |
] + [ | |
"-fmodule-name=GoogleToolboxForMac", | |
"-fmodules" | |
], | |
visibility = [ | |
"//visibility:public" | |
] | |
) | |
acknowledged_target( | |
name = "UnitTestingAppLib_acknowledgement", | |
deps = [], | |
value = "//Vendor/GoogleToolboxForMac/pod_support_buildable:acknowledgement_fragment" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment