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

Unified Diff: build/config/mac/BuildInfo.plist

Issue 1877523002: Mac/iOS/GN: Generate Info.plist files for Mac apps and frameworks with gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Delete version information to be populated elsewhere, fix assert string. Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/config/ios/rules.gni ('k') | build/config/mac/gen_plist.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/mac/BuildInfo.plist
diff --git a/build/config/mac/BuildInfo.plist b/build/config/mac/BuildInfo.plist
new file mode 100644
index 0000000000000000000000000000000000000000..b0856e3591d2df61feb42cb13caecc076d8018a0
--- /dev/null
+++ b/build/config/mac/BuildInfo.plist
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>BuildMachineOSBuild</key>
+ <string>${BUILD_MACHINE_OS_BUILD}</string>
+ <key>DTCompiler</key>
+ <string>${GCC_VERSION}</string>
+ <key>DTSDKBuild</key>
+ <string>${MAC_SDK_BUILD}</string>
+ <key>DTSDKName</key>
+ <string>${MAC_SDK_NAME}</string>
+ <key>DTXcode</key>
+ <string>${XCODE_VERSION}</string>
+ <key>DTXcodeBuild</key>
+ <string>${XCODE_BUILD}</string>
+ <key>CFBundleShortVersionString</key>
+ <string>${VERSION}</string>
+ <key>CFBundleVersion</key>
+ <string>${VERSION_BUILD}</string>
+ <key>CFBundleIdentifier</key>
+ <string>org.chromium.${PRODUCT_NAME:rfc1034identifier}</string>
+ <key>SCM_REVISION</key>
+ <string>${COMMIT_HASH}</string>
+</dict>
+</plist>
« no previous file with comments | « build/config/ios/rules.gni ('k') | build/config/mac/gen_plist.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698