gecko-dev/testing/geckodriver/moz.build
Henrik Skupin dd5317eeba Bug 1525126 - [geckodriver] Add Android support. r=jgraham,nalexander
This patch allows geckodriver to interact with processes of
GeckoView packages on Android devices while running itself
on a host machine. The connection to and from the application
under test is done via adb forward ports.

Depends on D45363

Differential Revision: https://phabricator.services.mozilla.com/D44897

--HG--
extra : moz-landing-system : lando
2019-09-25 23:00:40 +00:00

29 lines
795 B
Plaintext

# 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/.
RUST_PROGRAMS += ["geckodriver"]
# Some Rust build scripts compile C/C++ sources, don't error on warnings for them.
AllowCompilerWarnings()
RUST_TESTS = [
"geckodriver",
"webdriver",
"marionette",
# TODO: Move to mozbase/rust/moz.build once those crates can be
# tested separately.
# "mozdevice", // Tests require adb, and cannot be run in CI
"mozprofile",
"mozrunner",
"mozversion",
]
with Files("**"):
BUG_COMPONENT = ("Testing", "geckodriver")
SPHINX_TREES["/testing/geckodriver"] = "doc"
with Files("doc/**"):
SCHEDULES.exclusive = ["docs"]