BUILD.gn 243 B

1234567891011
  1. action("generate_mas_config") {
  2. outputs = [ "$target_gen_dir/../../mas.h" ]
  3. script = "../../script/generate-mas-config.py"
  4. if (is_mas_build) {
  5. args = [ "true" ]
  6. } else {
  7. args = [ "false" ]
  8. }
  9. args += rebase_path(outputs)
  10. }