@@ -53,9 +53,9 @@ def _write_pbxproj_prefix_test_impl(ctx):
53
53
import_index_build_indexstores = (
54
54
ctx .attr .import_index_build_indexstores
55
55
),
56
- legacy_index_import = ctx .attr .legacy_index_import ,
57
56
index_import = ctx .attr .index_import ,
58
57
install_path = "a/project.xcodeproj" ,
58
+ legacy_index_import = ctx .attr .legacy_index_import ,
59
59
minimum_xcode_version = ctx .attr .minimum_xcode_version ,
60
60
platforms = ctx .attr .platforms ,
61
61
post_build_script = ctx .attr .post_build_script ,
@@ -145,8 +145,8 @@ write_pbxproj_prefix_test = unittest.make(
145
145
"default_xcode_configuration" : attr .string (mandatory = True ),
146
146
"execution_root_file" : attr .string (mandatory = True ),
147
147
"import_index_build_indexstores" : attr .bool (mandatory = True ),
148
- "legacy_index_import" : attr .string (mandatory = True ),
149
148
"index_import" : attr .string (mandatory = True ),
149
+ "legacy_index_import" : attr .string (mandatory = True ),
150
150
"minimum_xcode_version" : attr .string (mandatory = True ),
151
151
"platforms" : attr .string_list (mandatory = True ),
152
152
"post_build_script" : attr .string (),
@@ -182,8 +182,8 @@ def write_pbxproj_prefix_test_suite(name):
182
182
default_xcode_configuration ,
183
183
execution_root_file ,
184
184
import_index_build_indexstores ,
185
- legacy_index_import ,
186
185
index_import ,
186
+ legacy_index_import ,
187
187
minimum_xcode_version ,
188
188
platforms ,
189
189
post_build_script = None ,
@@ -207,8 +207,8 @@ def write_pbxproj_prefix_test_suite(name):
207
207
default_xcode_configuration = default_xcode_configuration ,
208
208
execution_root_file = execution_root_file ,
209
209
import_index_build_indexstores = import_index_build_indexstores ,
210
- legacy_index_import = legacy_index_import ,
211
210
index_import = index_import ,
211
+ legacy_index_import = legacy_index_import ,
212
212
minimum_xcode_version = minimum_xcode_version ,
213
213
platforms = platforms ,
214
214
post_build_script = post_build_script ,
@@ -237,8 +237,8 @@ def write_pbxproj_prefix_test_suite(name):
237
237
default_xcode_configuration = "Debug" ,
238
238
execution_root_file = "an/execution/root/file" ,
239
239
import_index_build_indexstores = True ,
240
- legacy_index_import = "some/path/to/legacy/index_import" ,
241
240
index_import = "some/path/to/index_import" ,
241
+ legacy_index_import = "some/path/to/legacy/index_import" ,
242
242
minimum_xcode_version = "14.2.1" ,
243
243
platforms = [
244
244
"MACOS" ,
@@ -303,8 +303,8 @@ def write_pbxproj_prefix_test_suite(name):
303
303
default_xcode_configuration = "Release" ,
304
304
execution_root_file = "an/execution/root/file" ,
305
305
import_index_build_indexstores = False ,
306
- legacy_index_import = "some/path/to/legacy/index_import" ,
307
306
index_import = "some/path/to/index_import" ,
307
+ legacy_index_import = "some/path/to/legacy/index_import" ,
308
308
platforms = [
309
309
"MACOS" ,
310
310
"IOS_DEVICE" ,
0 commit comments