blob: a8fcd57aaa7f565521c8dbfbc8515eb47919c6b6 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001#
2# libjingle
3# Copyright 2012, Google Inc.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are met:
7#
8# 1. Redistributions of source code must retain the above copyright notice,
9# this list of conditions and the following disclaimer.
10# 2. Redistributions in binary form must reproduce the above copyright notice,
11# this list of conditions and the following disclaimer in the documentation
12# and/or other materials provided with the distribution.
13# 3. The name of the author may not be used to endorse or promote products
14# derived from this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26#
27
28# This file contains common settings for building libjingle components.
29
30{
31 'variables': {
fischman@webrtc.orgdd14b2a2013-08-12 18:06:29 +000032 'webrtc_root%': '<(DEPTH)/webrtc',
henrike@webrtc.org28e20752013-07-10 00:45:36 +000033 # TODO(ronghuawu): Chromium build will need a different libjingle_root.
34 'libjingle_root%': '<(DEPTH)',
35 # TODO(ronghuawu): For now, disable the Chrome plugins, which causes a
36 # flood of chromium-style warnings.
37 'clang_use_chrome_plugins%': 0,
38 'libpeer_target_type%': 'static_library',
henrike@webrtc.org28e20752013-07-10 00:45:36 +000039 # Whether or not to build the ObjectiveC PeerConnection API & tests.
fischman@webrtc.orgdd14b2a2013-08-12 18:06:29 +000040 'libjingle_objc%': 0,
41 'conditions': [
42 ['OS=="android" or OS=="linux"', {
43 # TODO(henrike): make sure waterfall bots have $JAVA_HOME configured
44 # properly and remove the default value below. See issue 2113.
45 'java_home%': '<!(python -c "import os; dir=os.getenv(\'JAVA_HOME\', \'/usr/lib/jvm/java-6-sun\'); assert os.path.exists(os.path.join(dir, \'include/jni.h\')), \'Point \\$JAVA_HOME or the java_home gyp variable to a directory containing include/jni.h!\'; print dir")',
46 }],
47 ],
henrike@webrtc.org28e20752013-07-10 00:45:36 +000048 },
49 'target_defaults': {
50 'include_dirs': [
51 '../..',
52 '../../third_party',
53 '../../third_party/webrtc',
henrike@webrtc.org9de257d2013-07-17 14:42:53 +000054 '../../webrtc',
henrike@webrtc.org28e20752013-07-10 00:45:36 +000055 ],
56 'defines': [
57 'EXPAT_RELATIVE_PATH',
58 'FEATURE_ENABLE_VOICEMAIL',
59 'GTEST_RELATIVE_PATH',
60 'JSONCPP_RELATIVE_PATH',
61 'LOGGING=1',
62 'SRTP_RELATIVE_PATH',
63
64 # Feature selection
65 'FEATURE_ENABLE_SSL',
66 'FEATURE_ENABLE_VOICEMAIL',
67 'FEATURE_ENABLE_PSTN',
68 # TODO(eric): enable HAVE_NSS_SSL_H and SSL_USE_NSS once they are ready.
69 # 'HAVE_NSS_SSL_H=1',
70 'HAVE_SRTP',
71 'HAVE_WEBRTC_VIDEO',
72 'HAVE_WEBRTC_VOICE',
73 # 'SSL_USE_NSS',
74 # TODO(ronghuawu): Remove this once libjingle is updated to use the new
75 # webrtc.
76 'USE_WEBRTC_DEV_BRANCH',
77 ],
78 'conditions': [
79 # TODO(ronghuawu): Support dynamic library build.
80 ['"<(libpeer_target_type)"=="static_library"', {
81 'defines': [ 'LIBPEERCONNECTION_LIB=1' ],
82 }],
83 ['OS=="linux"', {
84 'defines': [
85 'LINUX',
86 ],
87 'conditions': [
88 ['clang==1', {
89 'cflags': [
90 # TODO(ronghuawu): Fix the warning caused by
91 # LateBindingSymbolTable::TableInfo from
92 # latebindingsymboltable.cc.def and remove below flag.
93 '-Wno-address-of-array-temporary',
94 ],
95 }],
96 ],
97 }],
98 ['OS=="mac"', {
99 'defines': [
100 'OSX',
101 ],
102 }],
103 ['OS=="ios"', {
104 'defines': [
105 'IOS',
fischman@webrtc.org1bc19542013-08-01 18:29:45 +0000106 'HAVE_NSS_SSL_H=1',
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000107 'SSL_USE_NSS_RNG',
108 ],
fischman@webrtc.org1bc19542013-08-01 18:29:45 +0000109 'defines!': [
110 'HAVE_OPENSSL_SSL_H=1',
111 ],
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000112 }],
henrike@webrtc.org723d6832013-07-12 16:04:50 +0000113 ['libjingle_objc==1', {
114 'defines': [
115 'CARBON_DEPRECATED=YES',
116 ],
117 }],
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000118 ['os_posix==1', {
119 'defines': [
120 'HASH_NAMESPACE=__gnu_cxx',
121 'POSIX',
122 'DISABLE_DYNAMIC_CAST',
123 'HAVE_OPENSSL_SSL_H=1',
124 # The POSIX standard says we have to define this.
125 '_REENTRANT',
126 ],
127 }],
128 ],
129 }, # target_defaults
130}