2024-09-17 01:38:56 -07:00
|
|
|
action("generate_mas_config") {
|
|
|
|
outputs = [ "$target_gen_dir/../../mas.h" ]
|
|
|
|
script = "../../script/generate-mas-config.py"
|
2018-09-13 22:02:16 -07:00
|
|
|
if (is_mas_build) {
|
2024-09-17 01:38:56 -07:00
|
|
|
args = [ "true" ]
|
2022-11-14 12:46:52 -08:00
|
|
|
} else {
|
2024-09-17 01:38:56 -07:00
|
|
|
args = [ "false" ]
|
2018-09-13 22:02:16 -07:00
|
|
|
}
|
2024-09-17 01:38:56 -07:00
|
|
|
|
|
|
|
args += rebase_path(outputs)
|
2018-09-13 22:02:16 -07:00
|
|
|
}
|