ca6fe3453a
The proto is used at build time to define classpath fragments to be read and parsed at runtime by `derive_classpath` service; in order to define and set BOOTCLASSPATH, DEX2OATCLASSPATH, and SYSTEMSERVERCLASSPATH environ variables. The tool is used for debugging and generation of binary protos. Bug: 180105615 Test: m && launch_cvd with a follow up changes Change-Id: I7e8b084e5f63e9aaad11da3221b909818e69e235
275 lines
4.6 KiB
Text
275 lines
4.6 KiB
Text
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
python_binary_host {
|
|
name: "check_boot_jars",
|
|
main: "check_boot_jars/check_boot_jars.py",
|
|
srcs: [
|
|
"check_boot_jars/check_boot_jars.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
}
|
|
|
|
python_binary_host {
|
|
name: "manifest_fixer",
|
|
main: "manifest_fixer.py",
|
|
srcs: [
|
|
"manifest_fixer.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
libs: [
|
|
"manifest_utils",
|
|
],
|
|
}
|
|
|
|
python_test_host {
|
|
name: "manifest_fixer_test",
|
|
main: "manifest_fixer_test.py",
|
|
srcs: [
|
|
"manifest_fixer_test.py",
|
|
"manifest_fixer.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
libs: [
|
|
"manifest_utils",
|
|
],
|
|
test_options: {
|
|
unit_test: true,
|
|
},
|
|
}
|
|
|
|
python_library_host {
|
|
name: "manifest_utils",
|
|
srcs: [
|
|
"manifest.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
}
|
|
|
|
python_binary_host {
|
|
name: "manifest_check",
|
|
main: "manifest_check.py",
|
|
srcs: [
|
|
"manifest_check.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
libs: [
|
|
"manifest_utils",
|
|
],
|
|
}
|
|
|
|
python_test_host {
|
|
name: "manifest_check_test",
|
|
main: "manifest_check_test.py",
|
|
srcs: [
|
|
"manifest_check_test.py",
|
|
"manifest_check.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
libs: [
|
|
"manifest_utils",
|
|
],
|
|
test_options: {
|
|
unit_test: true,
|
|
},
|
|
}
|
|
|
|
python_binary_host {
|
|
name: "jsonmodify",
|
|
main: "jsonmodify.py",
|
|
srcs: [
|
|
"jsonmodify.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
}
|
|
|
|
python_binary_host {
|
|
name: "test_config_fixer",
|
|
main: "test_config_fixer.py",
|
|
srcs: [
|
|
"test_config_fixer.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
libs: [
|
|
"manifest_utils",
|
|
],
|
|
}
|
|
|
|
python_test_host {
|
|
name: "test_config_fixer_test",
|
|
main: "test_config_fixer_test.py",
|
|
srcs: [
|
|
"test_config_fixer_test.py",
|
|
"test_config_fixer.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
libs: [
|
|
"manifest_utils",
|
|
],
|
|
test_suites: ["general-tests"],
|
|
}
|
|
|
|
python_binary_host {
|
|
name: "construct_context",
|
|
main: "construct_context.py",
|
|
srcs: [
|
|
"construct_context.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
libs: [
|
|
"manifest_utils",
|
|
],
|
|
}
|
|
|
|
python_test_host {
|
|
name: "construct_context_test",
|
|
main: "construct_context_test.py",
|
|
srcs: [
|
|
"construct_context_test.py",
|
|
"construct_context.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: true,
|
|
},
|
|
py3: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
libs: [
|
|
"manifest_utils",
|
|
],
|
|
test_suites: ["general-tests"],
|
|
}
|
|
|
|
python_library_host {
|
|
name: "ninja_rsp",
|
|
srcs: ["ninja_rsp.py"],
|
|
}
|
|
|
|
python_binary_host {
|
|
name: "lint-project-xml",
|
|
main: "lint-project-xml.py",
|
|
srcs: [
|
|
"lint-project-xml.py",
|
|
],
|
|
libs: ["ninja_rsp"],
|
|
}
|
|
|
|
python_binary_host {
|
|
name: "gen-kotlin-build-file.py",
|
|
main: "gen-kotlin-build-file.py",
|
|
srcs: [
|
|
"gen-kotlin-build-file.py",
|
|
],
|
|
libs: ["ninja_rsp"],
|
|
}
|
|
|
|
python_binary_host {
|
|
name: "conv_linker_config",
|
|
srcs: [
|
|
"conv_linker_config.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: false,
|
|
},
|
|
py3: {
|
|
enabled: true,
|
|
embedded_launcher: true,
|
|
},
|
|
},
|
|
libs: [
|
|
"linker_config_proto",
|
|
],
|
|
}
|
|
|
|
python_binary_host {
|
|
name: "conv_classpaths_proto",
|
|
srcs: [
|
|
"conv_classpaths_proto.py",
|
|
],
|
|
version: {
|
|
py2: {
|
|
enabled: false,
|
|
},
|
|
py3: {
|
|
enabled: true,
|
|
embedded_launcher: true,
|
|
},
|
|
},
|
|
libs: [
|
|
"classpaths_proto_python",
|
|
],
|
|
}
|