Overview
Comment: | ChromeOS: Made debugging build optional and non-default, as well as applying to the JavaScript portion of the extension |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
01a8bae1090d608d8e7adaa9005b0ade |
User & Date: | rkeene on 2016-02-11 16:02:39 |
Other Links: | manifest | tags |
Context
2016-02-11
| ||
16:03 | ChromeOS: Updated to create a new thread for every request, since we must not run on the main thread check-in: a32e10a9ec user: rkeene tags: trunk | |
16:02 | ChromeOS: Made debugging build optional and non-default, as well as applying to the JavaScript portion of the extension check-in: 01a8bae109 user: rkeene tags: trunk | |
2016-02-10
| ||
23:06 | ChromeOS: better cleanup check-in: 82721ca5b6 user: rkeene tags: trunk | |
Changes
Modified build/chrome/Makefile from [c37ded695f] to [8c559dd520].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | + + + + + + + | CC = pnacl-clang CXX = pnacl-clang++ AR = pnacl-ar RANLIB = pnacl-ranlib FINALIZE = pnacl-finalize CACKEY_LIBS = -Llib -lcackey -lz PCSC_LIBS = -Llib -lpcsc -L${NACL_SDK_ROOT}/lib/pnacl/Release -lppapi -lppapi_cpp LIBS = $(CACKEY_LIBS) $(PCSC_LIBS) CFLAGS = -Wall -g3 -ggdb3 -I${NACL_SDK_ROOT}/include -I../../pkcs11 -Iinclude/PCSC CXXFLAGS = $(CFLAGS) -std=gnu++11 LDFLAGS = -g3 -ggdb3 CACKEY_DEBUG = 0 ifeq (1,$(CACKEY_DEBUG)) CACKEY_LIBNAME = libcackey_g else CACKEY_LIBNAME = libcackey endif PATH += :${NACL_SDK_ROOT}/toolchain/linux_pnacl/bin export PATH ifeq (,${NACL_SDK_ROOT}) $(error "Please set NACL_SDK_ROOT") endif |
︙ | |||
36 37 38 39 40 41 42 | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | - + + + - + | mv cackey.nmf.new cackey.nmf lib/libcackey.a: build-deps mkdir -p lib rm -f lib/libcackey.a rm -rf workdir-* +./build-deps |
︙ |