Overview
Comment: | ChromeOS: Include icon in the zip file |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | fa44d4ac0f8dedf503204b7695c606141d2a4c83 |
User & Date: | rkeene on 2016-02-26 18:22:17 |
Other Links: | manifest | tags |
Context
2016-02-26
| ||
18:23 | ChromeOS: Renamed output from "cackey.crx" to "cackey.zip", which gets uploaded to the Chrome Web Store check-in: fa6376b98d user: rkeene tags: trunk | |
18:22 | ChromeOS: Include icon in the zip file check-in: fa44d4ac0f user: rkeene tags: trunk | |
18:21 | ChromeOS: Updated to only enable debugging symbols in a debugging build check-in: 8668b85846 user: rkeene tags: trunk | |
Changes
Modified build/chrome/Makefile from [9ef299ca9a] to [2749a12e68].
28 28 ifeq (,${NACL_SDK_ROOT}) 29 29 $(error "Please set NACL_SDK_ROOT") 30 30 endif 31 31 export NACL_SDK_ROOT 32 32 33 33 all: cackey.crx 34 34 35 -cackey.crx: $(CACKEY_EXECUTABLES) cackey.nmf manifest.json cackey.js google-pcsc.js pin.html pin.js pin-icon.png 35 +cackey.crx: $(CACKEY_EXECUTABLES) cackey.nmf manifest.json cackey.js google-pcsc.js pin.html pin.js pin-icon.png icon.png 36 36 rm -f cackey.crx 37 37 zip cackey.crx.new $^ 38 38 mv cackey.crx.new cackey.crx 39 39 40 40 cackey.bc: cackey-chrome.o cackey-chrome-init.o lib/libcackey.a lib/libpcsc.a lib/libz.a 41 41 $(CXX) $(CXXFLAGS) $(LDFLAGS) -o cackey.bc.new cackey-chrome.o cackey-chrome-init.o $(LIBS) 42 42 mv cackey.bc.new cackey.bc