platform_build_soong/bpfix
Dan Willemsen 1934adc077 soong_config: bool_variables shortcut
Using a lot of boolean variables can become very verbose without adding
really any new information:

      variables: ["a", "b", "c"],
  }

  soong_config_bool_variable {
      name: "a",
  }

  soong_config_bool_variable {
      name: "b",
  }

  soong_config_bool_variable {
      name: "c",
  }

Now turns into:

      bool_variables: ["a", "b", "c"],
  }

Bug: 153161144
Test: built-in tests
Change-Id: If5455a38433431c7ecbce1e5b32cfbb47f42602a
Merged-In: If5455a38433431c7ecbce1e5b32cfbb47f42602a
(cherry picked from commit 2b8b89cfa2)
2020-04-03 08:57:41 -07:00
..
bpfix soong_config: bool_variables shortcut 2020-04-03 08:57:41 -07:00
cmd Move partner androidmk and bpfix files to match their package path 2019-11-11 15:44:09 -08:00
cmd_lib Move partner androidmk and bpfix files to match their package path 2019-11-11 15:44:09 -08:00
Android.bp Move partner androidmk and bpfix files to match their package path 2019-11-11 15:44:09 -08:00