Files
android_packages_modules_Co…/Tethering/tests/privileged/Android.bp
markchien 016ee97171 tethering: DAD Proxy Daemon
DAD proxy daemon responsible for forwarding NS/NA between
tethered iface and upstream iface.

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1258645

Merged-In: I3f1d7019f1a12647b78630a412df3adf03e9e95a
Change-Id: I208bcd3f320afb2673ea0a1cbbccd5f32059fe8b
2020-12-04 10:06:39 +00:00

50 lines
1.3 KiB
Plaintext

//
// Copyright (C) 2020 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.
//
java_defaults {
name: "TetheringPrivilegedTestsJniDefaults",
jni_libs: [
"libdexmakerjvmtiagent",
"libstaticjvmtiagent",
"libtetherutilsjni",
],
jni_uses_sdk_apis: true,
visibility: ["//visibility:private"],
}
android_test {
name: "TetheringPrivilegedTests",
defaults: [
"TetheringPrivilegedTestsJniDefaults",
],
srcs: [
"src/**/*.java",
"src/**/*.kt",
],
certificate: "networkstack",
platform_apis: true,
test_suites: [
"device-tests",
"mts",
],
static_libs: [
"androidx.test.rules",
"net-tests-utils",
"TetheringApiCurrentLib",
],
compile_multilib: "both",
}