mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-10 02:18:57 +00:00
26 lines
1007 B
INI
26 lines
1007 B
INI
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
DEFINES['ANDROID_PACKAGE_NAME'] = CONFIG['ANDROID_PACKAGE_NAME']
|
|
|
|
include('background_junit3_sources.mozbuild')
|
|
|
|
jar = add_java_jar('background-junit3')
|
|
jar.sources += background_junit3_sources
|
|
jar.extra_jars += [CONFIG['ANDROID_COMPAT_LIB']]
|
|
|
|
main = add_android_eclipse_project('BackgroundInstrumentationTests', OBJDIR + '/AndroidManifest.xml')
|
|
main.package_name = 'org.mozilla.goanna.background.tests'
|
|
main.res = SRCDIR + '/res'
|
|
main.recursive_make_targets += [
|
|
OBJDIR + '/AndroidManifest.xml']
|
|
main.referenced_projects += ['Fennec']
|
|
|
|
main.add_classpathentry('src', SRCDIR + '/src',
|
|
dstdir='src/org/mozilla/goanna/background')
|
|
|
|
ANDROID_INSTRUMENTATION_MANIFESTS += ['instrumentation.ini']
|