2020-05-07 00:57:32 +02:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
|
2021-02-04 03:08:28 +01:00
|
|
|
package {
|
|
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
|
|
}
|
|
|
|
|
2020-06-23 00:10:31 +02:00
|
|
|
python_binary_host {
|
|
|
|
name: "ndkstubgen",
|
|
|
|
pkg_path: "ndkstubgen",
|
|
|
|
main: "__init__.py",
|
2020-05-07 00:57:32 +02:00
|
|
|
srcs: [
|
2020-06-23 00:10:31 +02:00
|
|
|
"__init__.py",
|
|
|
|
],
|
|
|
|
libs: [
|
|
|
|
"symbolfile",
|
2020-05-07 00:57:32 +02:00
|
|
|
],
|
|
|
|
}
|
2020-05-29 22:37:12 +02:00
|
|
|
|
2020-06-23 00:10:31 +02:00
|
|
|
python_library_host {
|
|
|
|
name: "ndkstubgenlib",
|
|
|
|
pkg_path: "ndkstubgen",
|
2020-05-29 22:37:12 +02:00
|
|
|
srcs: [
|
2020-06-23 00:10:31 +02:00
|
|
|
"__init__.py",
|
|
|
|
],
|
|
|
|
libs: [
|
|
|
|
"symbolfile",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
python_test_host {
|
|
|
|
name: "test_ndkstubgen",
|
|
|
|
srcs: [
|
|
|
|
"test_ndkstubgen.py",
|
|
|
|
],
|
|
|
|
libs: [
|
|
|
|
"ndkstubgenlib",
|
2020-05-29 22:37:12 +02:00
|
|
|
],
|
|
|
|
}
|