Merge "Support module_build_from_source for more prebuilt types." into sc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
8a777836c3
59
Android.bp
59
Android.bp
@@ -40,3 +40,62 @@ soong_config_module_type {
|
||||
"prefer",
|
||||
],
|
||||
}
|
||||
|
||||
soong_config_module_type {
|
||||
name: "module_prebuilt_bootclasspath_fragment",
|
||||
module_type: "prebuilt_bootclasspath_fragment",
|
||||
config_namespace: "ANDROID",
|
||||
bool_variables: ["module_build_from_source"],
|
||||
properties: [
|
||||
"prefer",
|
||||
],
|
||||
}
|
||||
|
||||
soong_config_module_type {
|
||||
name: "module_java_import",
|
||||
module_type: "java_import",
|
||||
config_namespace: "ANDROID",
|
||||
bool_variables: ["module_build_from_source"],
|
||||
properties: [
|
||||
"prefer",
|
||||
],
|
||||
}
|
||||
soong_config_module_type {
|
||||
name: "module_java_sdk_library_import",
|
||||
module_type: "java_sdk_library_import",
|
||||
config_namespace: "ANDROID",
|
||||
bool_variables: ["module_build_from_source"],
|
||||
properties: [
|
||||
"prefer",
|
||||
],
|
||||
}
|
||||
|
||||
soong_config_module_type {
|
||||
name: "module_cc_prebuilt_binary",
|
||||
module_type: "cc_prebuilt_binary",
|
||||
config_namespace: "ANDROID",
|
||||
bool_variables: ["module_build_from_source"],
|
||||
properties: [
|
||||
"prefer",
|
||||
],
|
||||
}
|
||||
|
||||
soong_config_module_type {
|
||||
name: "module_cc_prebuilt_library_shared",
|
||||
module_type: "cc_prebuilt_library_shared",
|
||||
config_namespace: "ANDROID",
|
||||
bool_variables: ["module_build_from_source"],
|
||||
properties: [
|
||||
"prefer",
|
||||
],
|
||||
}
|
||||
|
||||
soong_config_module_type {
|
||||
name: "module_cc_prebuilt_library_headers",
|
||||
module_type: "cc_prebuilt_library_headers",
|
||||
config_namespace: "ANDROID",
|
||||
bool_variables: ["module_build_from_source"],
|
||||
properties: [
|
||||
"prefer",
|
||||
],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user