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

Unified Diff: chrome/test/data/safe_browsing/mach_o/Makefile

Issue 2961373002: Improve Zip File Scanning on Mac (Closed)
Patch Set: minor Created 3 years, 4 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
Index: chrome/test/data/safe_browsing/mach_o/Makefile
diff --git a/chrome/test/data/safe_browsing/mach_o/Makefile b/chrome/test/data/safe_browsing/mach_o/Makefile
index d0a749849a934d6a40ff5ac76496fb09ad23cc95..4eb76cfeb1dcbff9712ed8469baad673d7b71cc4 100644
--- a/chrome/test/data/safe_browsing/mach_o/Makefile
+++ b/chrome/test/data/safe_browsing/mach_o/Makefile
@@ -65,6 +65,13 @@ signed-archive.dmg: test-bundle.app codesign.crt
codesign -s $(KEYCHAIN_IDENTITY) $@
$(call post-build)
+zipped-app-two-executables-one-signed.zip: executablefat signedexecutablefat
+ ditto base-bundle.app app-with-executables.app
+ ditto $< app-with-executables.app/Contents/MacOS/
+ ditto $(word 2,$^) app-with-executables.app/Contents/MacOS/
+ zip -r $@ app-with-executables.app
+ rm -r app-with-executables.app
+
.PHONY: test-bundle.app
test-bundle.app: signedexecutablefat libsigned64.dylib executable32
$(call pre-build)

Powered by Google App Engine
This is Rietveld 408576698