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

Side by Side Diff: openssl/android-config.mk

Issue 2072073002: Delete bundled copy of OpenSSL and replace with README. (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/openssl@master
Patch Set: Delete bundled copy of OpenSSL and replace with README. Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « openssl/Ssl-config.mk ('k') | openssl/android.testssl/CAss.cnf » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #
2 # These flags represent the build-time configuration of OpenSSL for android
3 #
4 # The value of $(openssl_cflags) was pruned from the Makefile generated
5 # by running ./Configure from import_openssl.sh.
6 #
7 # This script performs minor but required patching for the Android build.
8 #
9
10 LOCAL_CFLAGS += $(openssl_cflags)
11
12 LOCAL_CFLAGS := $(filter-out -DTERMIO, $(LOCAL_CFLAGS))
13
14 ifeq ($(HOST_OS),windows)
15 LOCAL_CFLAGS := $(filter-out -DDSO_DLFCN -DHAVE_DLFCN_H,$(LOCAL_CFLAGS))
16 endif
17
18 # Directories
19 LOCAL_CFLAGS += \
20 -DOPENSSLDIR="\"/system/lib/ssl\"" \
21 -DENGINESDIR="\"/system/lib/ssl/engines\""
22
23 # Intentionally excluded http://b/7079965
24 LOCAL_CFLAGS := $(filter-out -DZLIB, $(LOCAL_CFLAGS))
25
26 # Debug
27 # LOCAL_CFLAGS += -DCIPHER_DEBUG
OLDNEW
« no previous file with comments | « openssl/Ssl-config.mk ('k') | openssl/android.testssl/CAss.cnf » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698