OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 KEYCHAIN_PASSWORD=g0atMaster | 5 KEYCHAIN_PASSWORD=g0atMaster |
6 # This must match the commonName in codesign.cfg. | 6 # This must match the commonName in codesign.cfg. |
7 KEYCHAIN_IDENTITY=untrusted@goat.local | 7 KEYCHAIN_IDENTITY=untrusted@goat.local |
8 | 8 |
9 # Funcitons to add and remove codesigning identity to user's keychain. These | 9 # Funcitons to add and remove codesigning identity to user's keychain. These |
10 # are necessary since the codesign utility no longer supports the -k option, | 10 # are necessary since the codesign utility no longer supports the -k option, |
(...skipping 47 matching lines...) Loading... |
58 codesign -s $(KEYCHAIN_IDENTITY) $@ --all-architectures | 58 codesign -s $(KEYCHAIN_IDENTITY) $@ --all-architectures |
59 $(call post-build) | 59 $(call post-build) |
60 | 60 |
61 signed-archive.dmg: test-bundle.app codesign.crt | 61 signed-archive.dmg: test-bundle.app codesign.crt |
62 $(call pre-build) | 62 $(call pre-build) |
63 hdiutil create -srcfolder test-bundle.app -format UDZO -layout \ | 63 hdiutil create -srcfolder test-bundle.app -format UDZO -layout \ |
64 SPUD -volname "Signed Archive" -ov $@ | 64 SPUD -volname "Signed Archive" -ov $@ |
65 codesign -s $(KEYCHAIN_IDENTITY) $@ | 65 codesign -s $(KEYCHAIN_IDENTITY) $@ |
66 $(call post-build) | 66 $(call post-build) |
67 | 67 |
| 68 zipped-app-two-executables-one-signed.zip: executablefat signedexecutablefat |
| 69 ditto base-bundle.app app-with-executables.app |
| 70 ditto $< app-with-executables.app/Contents/MacOS/ |
| 71 ditto $(word 2,$^) app-with-executables.app/Contents/MacOS/ |
| 72 zip -r $@ app-with-executables.app |
| 73 rm -r app-with-executables.app |
| 74 |
68 .PHONY: test-bundle.app | 75 .PHONY: test-bundle.app |
69 test-bundle.app: signedexecutablefat libsigned64.dylib executable32 | 76 test-bundle.app: signedexecutablefat libsigned64.dylib executable32 |
70 $(call pre-build) | 77 $(call pre-build) |
71 ditto base-bundle.app $@ | 78 ditto base-bundle.app $@ |
72 ditto $< $@/Contents/MacOS/test-bundle | 79 ditto $< $@/Contents/MacOS/test-bundle |
73 ditto $(word 2,$^) $@/Contents/Frameworks/$(word 2,$^) | 80 ditto $(word 2,$^) $@/Contents/Frameworks/$(word 2,$^) |
74 ditto $(word 3,$^) $@/Contents/Resources/$(word 3,$^) | 81 ditto $(word 3,$^) $@/Contents/Resources/$(word 3,$^) |
75 codesign -f -s $(KEYCHAIN_IDENTITY) $@ --all-architectures \ | 82 codesign -f -s $(KEYCHAIN_IDENTITY) $@ --all-architectures \ |
76 --resource-rules ResourceRules | 83 --resource-rules ResourceRules |
77 $(call post-build) | 84 $(call post-build) |
(...skipping 37 matching lines...) Loading... |
115 | 122 |
116 .PHONY: modified-localization.app | 123 .PHONY: modified-localization.app |
117 modified-localization.app: test-bundle.app | 124 modified-localization.app: test-bundle.app |
118 $(call pre-build) | 125 $(call pre-build) |
119 ditto $< $@ | 126 ditto $< $@ |
120 echo "<xml/>" > $@/Contents/Resources/Base.lproj/InfoPlist.strings | 127 echo "<xml/>" > $@/Contents/Resources/Base.lproj/InfoPlist.strings |
121 codesign -f -s $(KEYCHAIN_IDENTITY) $@ --all-architectures \ | 128 codesign -f -s $(KEYCHAIN_IDENTITY) $@ --all-architectures \ |
122 --resource-rules ResourceRules | 129 --resource-rules ResourceRules |
123 echo "CORRUPT" > $@/Contents/Resources/Base.lproj/InfoPlist.strings | 130 echo "CORRUPT" > $@/Contents/Resources/Base.lproj/InfoPlist.strings |
124 $(call post-build) | 131 $(call post-build) |
OLD | NEW |