Files
build_soong/android
Dan Willemsen 2b8b89cfa2 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"],
  }

Test: built-in tests
Change-Id: If5455a38433431c7ecbce1e5b32cfbb47f42602a
2020-03-23 22:42:32 -07:00
..
2019-12-18 08:19:10 -08:00
2018-07-22 21:18:45 -07:00
2019-10-18 18:28:00 +00:00
2020-01-22 16:54:18 -08:00
2019-12-18 08:19:10 -08:00
2019-12-18 08:19:10 -08:00
2020-01-24 16:43:40 -08:00
2019-12-18 08:19:10 -08:00
2020-01-22 16:54:18 -08:00
2019-12-18 08:19:10 -08:00
2019-12-19 09:22:36 -08:00
2019-12-18 08:19:10 -08:00
2019-02-20 15:43:06 -08:00