@@ -33,62 +33,6 @@ The default Xcode version from `available_xcodes`.
3333 },
3434)
3535
36- def _xcode_version_properties_info_init (
37- * ,
38- xcode_version ,
39- default_ios_sdk_version = "8.4" ,
40- default_macos_sdk_version = "10.11" ,
41- default_tvos_sdk_version = "9.0" ,
42- default_watchos_sdk_version = "2.0" ,
43- default_visionos_sdk_version = "1.0" ,
44- sdk_variant_info = None ):
45- # Ensure that all fields get default values if they weren't specified.
46- return {
47- "xcode_version" : xcode_version ,
48- "default_ios_sdk_version" : default_ios_sdk_version ,
49- "default_macos_sdk_version" : default_macos_sdk_version ,
50- "default_tvos_sdk_version" : default_tvos_sdk_version ,
51- "default_watchos_sdk_version" : default_watchos_sdk_version ,
52- "default_visionos_sdk_version" : default_visionos_sdk_version ,
53- "sdk_variant_info" : sdk_variant_info ,
54- }
55-
56- XcodeVersionPropertiesInfo , _new_xcode_version_properties_info = provider (
57- doc = """\
58- Information about a specific Xcode version, such as its default SDK versions.
59- """ ,
60- fields = {
61- "xcode_version" : """\
62- A string representing the Xcode version number, or `None` if it is unknown.
63- """ ,
64- "default_ios_sdk_version" : """\
65- A string representing the default iOS SDK version number for this version of
66- Xcode, or `None` if it is unknown.
67- """ ,
68- "default_macos_sdk_version" : """\
69- A string representing the default macOS SDK version number for this version of
70- Xcode, or `None` if it is unknown.
71- """ ,
72- "default_tvos_sdk_version" : """\
73- A string representing the default tvOS SDK version number for this version of
74- Xcode, or `None` if it is unknown.
75- """ ,
76- "default_watchos_sdk_version" : """\
77- A string representing the default watchOS SDK version number for this version of
78- Xcode, or `None` if it is unknown.
79- """ ,
80- "default_visionos_sdk_version" : """\
81- A string representing the default visionOS SDK version number for this version
82- of Xcode, or `None` if it is unknown.
83- """ ,
84- "sdk_variant_info" : """\
85- The `XcodeSdkVariantInfo` provider for the SDK in this version of Xcode to
86- build with under the current target configuration, or `None` if it is unknown.
87- """ ,
88- },
89- init = _xcode_version_properties_info_init ,
90- )
91-
9236XcodeVersionRuleInfo = provider (
9337 doc = """\
9438 The information in a single target of the `xcode_version` rule. A single target
0 commit comments