1# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2# vim: set filetype=python:
3# This Source Code Form is subject to the terms of the Mozilla Public
4# License, v. 2.0. If a copy of the MPL was not distributed with this
5# file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7DEFINES['ANDROID_PACKAGE_NAME'] = CONFIG['ANDROID_PACKAGE_NAME']
8
9ANDROID_APK_NAME = 'robocop-debug'
10ANDROID_APK_PACKAGE = 'org.mozilla.roboexample.test'
11ANDROID_ASSETS_DIRS += ['assets']
12
13TEST_HARNESS_FILES.testing.mochitest += [
14    'robocop.ini',
15    'robocop_autophone.ini',
16]
17TEST_HARNESS_FILES.testing.mochitest.tests.robocop += [
18    '*.html',
19    '*.jpg',
20    '*.mp4',
21    '*.ogg',
22    '*.sjs',
23    '*.swf',
24    '*.webm',
25    '*.xml',
26    'reader_mode_pages/**', # The ** preserves directory structure.
27    'robocop*.js',
28    'test*.js',
29]
30
31DEFINES['MOZ_ANDROID_SHARED_ID'] = CONFIG['MOZ_ANDROID_SHARED_ID']
32OBJDIR_PP_FILES.mobile.android.tests.browser.robocop += [
33    'AndroidManifest.xml.in',
34]
35