1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mozglue/android/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,54 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +EXPORTS += [ 1.11 + 'APKOpen.h', 1.12 +] 1.13 + 1.14 +SOURCES += [ 1.15 + 'APKOpen.cpp', 1.16 + 'NativeCrypto.cpp', 1.17 + 'nsGeckoUtils.cpp', 1.18 + 'NSSBridge.cpp', 1.19 + 'pbkdf2_sha256.c', 1.20 + 'SQLiteBridge.cpp', 1.21 +] 1.22 + 1.23 +FAIL_ON_WARNINGS = True 1.24 + 1.25 +FINAL_LIBRARY = 'mozglue' 1.26 + 1.27 +DEFINES['ANDROID_PACKAGE_NAME'] = '"%s"' % CONFIG['ANDROID_PACKAGE_NAME'] 1.28 + 1.29 +if CONFIG['MOZ_FOLD_LIBS']: 1.30 + DEFINES['MOZ_FOLD_LIBS'] = True 1.31 + 1.32 +GENERATED_INCLUDES += ['/build'] 1.33 +LOCAL_INCLUDES += [ 1.34 + '../linker', 1.35 + '/db/sqlite3/src', 1.36 + '/ipc/chromium/src', 1.37 + '/nsprpub/lib/ds', 1.38 + '/nsprpub/lib/libc/include', 1.39 + '/nsprpub/pr/include', 1.40 + '/security/nss/lib/base', 1.41 + '/security/nss/lib/certdb', 1.42 + '/security/nss/lib/cryptohi', 1.43 + '/security/nss/lib/dev', 1.44 + '/security/nss/lib/freebl', 1.45 + '/security/nss/lib/nss', 1.46 + '/security/nss/lib/pk11wrap', 1.47 + '/security/nss/lib/pkcs7', 1.48 + '/security/nss/lib/pki', 1.49 + '/security/nss/lib/smime', 1.50 + '/security/nss/lib/softoken', 1.51 + '/security/nss/lib/ssl', 1.52 + '/security/nss/lib/util', 1.53 + '/toolkit/components/startup', 1.54 + '/xpcom/build', 1.55 +] 1.56 + 1.57 +DISABLE_STL_WRAPPING = True