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

Side by Side Diff: openssl/Apps.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/Android.mk ('k') | openssl/Apps-config.mk » ('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 # Copyright 2006 The Android Open Source Project
2
3 LOCAL_PATH:= $(call my-dir)
4
5 local_shared_libraries := \
6 libssl \
7 libcrypto
8
9 local_c_includes :=
10 local_c_flags :=
11
12 local_additional_dependencies := $(LOCAL_PATH)/android-config.mk $(LOCAL_PATH)/A pps.mk
13
14 include $(LOCAL_PATH)/Apps-config.mk
15
16 include $(CLEAR_VARS)
17 LOCAL_MODULE:= openssl
18 LOCAL_MODULE_TAGS := optional
19 LOCAL_SRC_FILES := $(target_src_files)
20 LOCAL_SHARED_LIBRARIES := $(local_shared_libraries)
21 LOCAL_C_INCLUDES := $(target_c_includes)
22 LOCAL_CFLAGS := $(target_c_flags)
23 LOCAL_ADDITIONAL_DEPENDENCIES := $(local_additional_dependencies)
24 include $(LOCAL_PATH)/android-config.mk
25 include $(BUILD_EXECUTABLE)
26
27 include $(CLEAR_VARS)
28 LOCAL_MODULE:= openssl
29 LOCAL_MODULE_TAGS := optional
30 LOCAL_SRC_FILES := $(host_src_files)
31 LOCAL_SHARED_LIBRARIES := $(local_shared_libraries)
32 LOCAL_C_INCLUDES := $(host_c_includes)
33 LOCAL_CFLAGS := $(host_c_flags)
34 LOCAL_ADDITIONAL_DEPENDENCIES := $(local_additional_dependencies)
35 include $(LOCAL_PATH)/android-config.mk
36 include $(BUILD_HOST_EXECUTABLE)
OLDNEW
« no previous file with comments | « openssl/Android.mk ('k') | openssl/Apps-config.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698