Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Side by Side Diff: build/config/ios/BuildInfo.plist

Issue 1752873002: Use bundle_data and create_bundle to add support for iOS app bundle. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-create-bundle
Patch Set: Remove conditional around bundle_data, use response_file_contents, clean description of compile_xca… Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/BUILD.gn ('k') | build/config/ios/ios_gen_plist.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/ PropertyList-1.0.dtd">
3 <plist version="1.0">
4 <dict>
5 <key>BuildMachineOSBuild</key>
6 <string>${BUILD_MACHINE_OS_BUILD}</string>
7 <key>CFBundleSupportedPlatforms</key>
8 <array>
9 <string>${IOS_SUPPORTED_PLATFORM}</string>
10 </array>
11 <key>DTCompiler</key>
12 <string>${GCC_VERSION}</string>
13 <key>DTPlatformName</key>
14 <string>${IOS_PLATFORM_NAME}</string>
15 <key>DTPlatformVersion</key>
16 <string>${IOS_PLATFORM_VERSION}</string>
17 <key>DTPlatformBuild</key>
18 <string>${IOS_PLATFORM_BUILD}</string>
19 <key>DTSDKBuild</key>
20 <string>${IOS_SDK_BUILD}</string>
21 <key>DTSDKName</key>
22 <string>${IOS_SDK_NAME}</string>
23 <key>MinimumOSVersion</key>
24 <string>${IOS_DEPLOYMENT_TARGET}</string>
25 <key>DTXcode</key>
26 <string>${XCODE_VERSION}</string>
27 <key>DTXcodeBuild</key>
28 <string>${XCODE_BUILD}</string>
29 <key>UIDeviceFamily</key>
30 <array>
31 <integer>1</integer>
32 <integer>2</integer>
33 </array>
34 </dict>
35 </plist>
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | build/config/ios/ios_gen_plist.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698