blob: e33748c6845c4c34b43248046ab004f27863ba73 [file] [log] [blame]
Alexandre Lision17b60c32014-02-03 14:37:59 -05001#########
2# PJSIP #
3#########
4include $(CLEAR_VARS)
5LOCAL_MODULE := pjsip
6
7PJSIP_DIR = libpjsip/sources/pjsip
8
9LOCAL_C_INCLUDES := $(PJSIP_DIR)/include \
10 $(PJSIP_DIR)/../pjlib/include \
11 $(PJSIP_DIR)/../pjlib-util/include \
12 $(PJSIP_DIR)/../pjnath/include \
Alexandre Lision907ed2e2014-02-04 10:33:09 -050013 $(PJSIP_DIR)/../pjmedia/include \
14 libopenssl/sources/include
Alexandre Lision17b60c32014-02-03 14:37:59 -050015
16
17LOCAL_CFLAGS := $(MY_PJSIP_FLAGS)
18
19
20PJSIP_SRC_DIR := $(PJSIP_DIR)/src/pjsip
21PJSIPSIMPLE_SRC_DIR := $(PJSIP_DIR)/src/pjsip-simple
22PJSIPUA_SRC_DIR := $(PJSIP_DIR)/src/pjsip-ua
23
24LOCAL_SRC_FILES := $(PJSIP_SRC_DIR)/sip_config.c \
25 $(PJSIP_SRC_DIR)/sip_multipart.c \
26 $(PJSIP_SRC_DIR)/sip_errno.c \
27 $(PJSIP_SRC_DIR)/sip_msg.c \
28 $(PJSIP_SRC_DIR)/sip_parser.c \
29 $(PJSIP_SRC_DIR)/sip_tel_uri.c \
30 $(PJSIP_SRC_DIR)/sip_uri.c \
31 $(PJSIP_SRC_DIR)/sip_endpoint.c \
32 $(PJSIP_SRC_DIR)/sip_util.c \
33 $(PJSIP_SRC_DIR)/sip_util_proxy.c \
34 $(PJSIP_SRC_DIR)/sip_resolve.c \
35 $(PJSIP_SRC_DIR)/sip_transport.c \
36 $(PJSIP_SRC_DIR)/sip_transport_loop.c \
37 $(PJSIP_SRC_DIR)/sip_transport_udp.c \
38 $(PJSIP_SRC_DIR)/sip_transport_tcp.c \
39 $(PJSIP_SRC_DIR)/sip_auth_aka.c \
40 $(PJSIP_SRC_DIR)/sip_auth_client.c \
41 $(PJSIP_SRC_DIR)/sip_auth_msg.c \
42 $(PJSIP_SRC_DIR)/sip_auth_parser.c \
43 $(PJSIP_SRC_DIR)/sip_auth_server.c \
44 $(PJSIP_SRC_DIR)/sip_transaction.c \
45 $(PJSIP_SRC_DIR)/sip_util_statefull.c \
46 $(PJSIP_SRC_DIR)/sip_dialog.c \
47 $(PJSIP_SRC_DIR)/sip_ua_layer.c \
48 $(PJSIPUA_SRC_DIR)/sip_inv.c \
49 $(PJSIPUA_SRC_DIR)/sip_reg.c \
50 $(PJSIPUA_SRC_DIR)/sip_replaces.c \
51 $(PJSIPUA_SRC_DIR)/sip_xfer.c \
52 $(PJSIPUA_SRC_DIR)/sip_100rel.c \
53 $(PJSIPUA_SRC_DIR)/sip_timer.c \
54 $(PJSIPSIMPLE_SRC_DIR)/errno.c \
55 $(PJSIPSIMPLE_SRC_DIR)/evsub.c \
56 $(PJSIPSIMPLE_SRC_DIR)/evsub_msg.c \
57 $(PJSIPSIMPLE_SRC_DIR)/iscomposing.c \
58 $(PJSIPSIMPLE_SRC_DIR)/mwi.c \
59 $(PJSIPSIMPLE_SRC_DIR)/pidf.c \
60 $(PJSIPSIMPLE_SRC_DIR)/presence.c \
61 $(PJSIPSIMPLE_SRC_DIR)/presence_body.c \
62 $(PJSIPSIMPLE_SRC_DIR)/publishc.c \
63 $(PJSIPSIMPLE_SRC_DIR)/rpid.c \
Alexandre Lision907ed2e2014-02-04 10:33:09 -050064 $(PJSIPSIMPLE_SRC_DIR)/xpidf.c \
65 $(PJSIP_SRC_DIR)/sip_transport_tls.c
Alexandre Lision17b60c32014-02-03 14:37:59 -050066
67
68include $(BUILD_STATIC_LIBRARY)