blob: 0a5760ea6706c6c8f44b4d1db9387f98c40b4787 [file] [log] [blame] [edit]
# Copyright 2025 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/python/python_library.gni")
group("snippet-uiautomator") {
testonly = true
deps = [ ":snippet-uiautomator_testonly" ]
}
python_library("snippet-uiautomator_testonly") {
enable_mypy = false
library_name = "snippet_uiautomator"
source_root = "src/snippet_uiautomator"
sources = [
"__init__.py",
"byselector.py",
"configurator.py",
"constants.py",
"errors.py",
"uiautomator.py",
"uidevice.py",
"uiobject2.py",
"uiwatcher.py",
"utils.py",
]
}