blob: 3ec01cec9dfba823e22491257f9b7bef96b6ebe0 [file] [log] [blame]
Vinayak Soni25a91f92020-09-18 15:24:07 +05301// Define a soong config module type to determine AOSP vs QVA configuration
2soong_config_module_type {
3 name: "aosp_vs_qva_java_defaults",
4 module_type: "java_defaults",
5 config_namespace: "aosp_vs_qva",
6 variables: ["aosp_or_qva"],
7 // Properties can be extended to other properties as well
8 properties: ["libs"],
9}
10
11soong_config_string_variable {
12 name: "aosp_or_qva",
13 values: ["aosp", "qva"],
14}