(configuration_names)
| 99 | |
| 100 | |
| 101 | def CreateXCConfigurationList(configuration_names): |
| 102 | xccl = gyp.xcodeproj_file.XCConfigurationList({"buildConfigurations": []}) |
| 103 | if len(configuration_names) == 0: |
| 104 | configuration_names = ["Default"] |
| 105 | for configuration_name in configuration_names: |
| 106 | xcbc = gyp.xcodeproj_file.XCBuildConfiguration({"name": configuration_name}) |
| 107 | xccl.AppendProperty("buildConfigurations", xcbc) |
| 108 | xccl.SetProperty("defaultConfigurationName", configuration_names[0]) |
| 109 | return xccl |
| 110 | |
| 111 | |
| 112 | class XcodeProject: |
no test coverage detected