You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
246 lines
5.2 KiB
246 lines
5.2 KiB
// Copyright 2019 The Android Open Source Project
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// Set of error prone rules to ensure code quality
|
|
// PackageLocation check requires the androidCompatible=false otherwise it does not do anything.
|
|
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
java_library_host {
|
|
name: "atest-tradefed-shell",
|
|
java_resource_dirs: ["res"],
|
|
}
|
|
|
|
java_library_host {
|
|
name: "asuite_proto_java",
|
|
srcs: [
|
|
"proto/*.proto",
|
|
],
|
|
proto: {
|
|
type: "full",
|
|
canonical_path_from_root: false,
|
|
include_dirs: ["external/protobuf/src"],
|
|
},
|
|
}
|
|
|
|
tradefed_binary_host {
|
|
name: "atest-tradefed",
|
|
short_name: "ATEST",
|
|
full_name: "ATest Test Suite",
|
|
static_libs: ["atest-tradefed-shell"],
|
|
required: ["atest_tradefed.sh", "atest_script_help.sh"],
|
|
}
|
|
|
|
python_defaults {
|
|
name: "atest_default",
|
|
pkg_path: "atest",
|
|
version: {
|
|
py2: {
|
|
enabled: false,
|
|
embedded_launcher: false,
|
|
},
|
|
py3: {
|
|
enabled: true,
|
|
embedded_launcher: false,
|
|
},
|
|
},
|
|
}
|
|
|
|
python_defaults {
|
|
name: "atest_lib_default",
|
|
pkg_path: "atest",
|
|
version: {
|
|
py2: {
|
|
enabled: false,
|
|
embedded_launcher: false,
|
|
},
|
|
py3: {
|
|
enabled: true,
|
|
embedded_launcher: false,
|
|
},
|
|
},
|
|
}
|
|
|
|
python_defaults {
|
|
name: "asuite_default",
|
|
pkg_path: "asuite",
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
embedded_launcher: false,
|
|
},
|
|
py3: {
|
|
enabled: true,
|
|
embedded_launcher: false,
|
|
},
|
|
},
|
|
}
|
|
|
|
python_binary_host {
|
|
name: "atest",
|
|
main: "atest.py",
|
|
srcs: [
|
|
"**/*.py",
|
|
],
|
|
exclude_srcs: [
|
|
"*_unittest.py",
|
|
"*/*_unittest.py",
|
|
"asuite_lib_test/*.py",
|
|
"proto/*_pb2.py",
|
|
"proto/__init__.py",
|
|
"tf_proto/__init__.py",
|
|
"tf_proto/*_pb2.py",
|
|
],
|
|
libs: [
|
|
"atest_proto",
|
|
"tradefed-protos-py",
|
|
"py-google-api-python-client",
|
|
"py-oauth2client",
|
|
"py-six",
|
|
],
|
|
data: [
|
|
"tools/updatedb_darwin.sh",
|
|
],
|
|
// Make atest's built name to atest-dev
|
|
stem: "atest-dev",
|
|
defaults: ["atest_default"],
|
|
dist: {
|
|
targets: ["droidcore"],
|
|
},
|
|
}
|
|
|
|
python_library_host {
|
|
name: "atest_proto",
|
|
defaults: ["atest_default"],
|
|
srcs: [
|
|
"proto/*.proto",
|
|
],
|
|
proto: {
|
|
canonical_path_from_root: false,
|
|
},
|
|
}
|
|
|
|
python_library_host {
|
|
name: "atest_module_info",
|
|
defaults: ["atest_lib_default"],
|
|
srcs: [
|
|
"atest_error.py",
|
|
"atest_decorator.py",
|
|
"atest_utils.py",
|
|
"constants.py",
|
|
"constants_default.py",
|
|
"module_info.py",
|
|
],
|
|
libs: [
|
|
"metrics-protos",
|
|
]
|
|
}
|
|
|
|
python_library_host {
|
|
name: "asuite_proto",
|
|
defaults: ["asuite_default"],
|
|
srcs: [
|
|
"proto/*.proto",
|
|
],
|
|
proto: {
|
|
canonical_path_from_root: false,
|
|
},
|
|
}
|
|
|
|
python_library_host {
|
|
name: "asuite_metrics",
|
|
defaults: ["asuite_default"],
|
|
srcs: [
|
|
"asuite_metrics.py",
|
|
],
|
|
}
|
|
|
|
python_library_host {
|
|
name: "asuite_cc_client",
|
|
defaults: ["asuite_default"],
|
|
srcs: [
|
|
"atest_error.py",
|
|
"atest_decorator.py",
|
|
"atest_utils.py",
|
|
"constants.py",
|
|
"constants_default.py",
|
|
"metrics/*.py",
|
|
],
|
|
libs: [
|
|
"asuite_proto",
|
|
"asuite_metrics",
|
|
],
|
|
}
|
|
|
|
python_test_host {
|
|
name: "atest_unittests",
|
|
main: "atest_run_unittests.py",
|
|
pkg_path: "atest",
|
|
srcs: [
|
|
"**/*.py",
|
|
],
|
|
test_options: {
|
|
unit_test: true,
|
|
},
|
|
data: [
|
|
"tools/updatedb_darwin.sh",
|
|
"unittest_data/**/*",
|
|
"unittest_data/**/.*",
|
|
],
|
|
exclude_srcs: [
|
|
"asuite_lib_test/*.py",
|
|
"proto/*_pb2.py",
|
|
"proto/__init__.py",
|
|
"tools/atest_updatedb_unittest.py",
|
|
"tf_proto/__init__.py",
|
|
"tf_proto/*_pb2.py",
|
|
],
|
|
libs: [
|
|
"atest_proto",
|
|
"tradefed-protos-py",
|
|
],
|
|
test_config: "atest_unittests.xml",
|
|
test_suites: ["general-tests"],
|
|
defaults: ["atest_default"],
|
|
}
|
|
|
|
python_test_host {
|
|
name: "atest_integration_tests",
|
|
main: "atest_integration_tests.py",
|
|
pkg_path: "atest",
|
|
srcs: [
|
|
"atest_integration_tests.py",
|
|
],
|
|
data: [
|
|
"INTEGRATION_TESTS",
|
|
],
|
|
test_config: "atest_integration_tests.xml",
|
|
test_suites: ["null-suite"],
|
|
defaults: ["atest_default"],
|
|
test_options: {
|
|
unit_test: false,
|
|
},
|
|
}
|
|
|
|
sh_binary_host {
|
|
name: "atest_tradefed.sh",
|
|
src: "atest_tradefed.sh",
|
|
}
|
|
|
|
sh_binary_host {
|
|
name: "atest_script_help.sh",
|
|
src: "atest_script_help.sh",
|
|
}
|