unplugged-system/packages/modules/Bluetooth/tools/pdl/scripts/Android.bp_disable

45 lines
1.0 KiB
Plaintext
Raw Normal View History

package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "system_bt_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: ["system_bt_license"],
}
// Python generator.
python_binary_host {
name: "pdl_python_generator",
main: "generate_python_backend.py",
srcs: [
"generate_python_backend.py",
"pdl/ast.py",
"pdl/core.py",
"pdl/utils.py",
],
}
// C++ generator.
python_binary_host {
name: "pdl_cxx_generator",
main: "generate_cxx_backend.py",
srcs: [
"generate_cxx_backend.py",
"pdl/ast.py",
"pdl/core.py",
"pdl/utils.py",
],
}
// C++ test generator.
python_binary_host {
name: "pdl_cxx_unittest_generator",
main: "generate_cxx_backend_tests.py",
srcs: [
"generate_cxx_backend_tests.py",
"pdl/ast.py",
"pdl/core.py",
"pdl/utils.py",
],
}